/* ===================================
FONT FAMILY
=================================== */

@import url('//fonts.googleapis.com/css?family=Crimson+Text:400,400i,600,600i,700,700i');

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.ttf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* ===================================
RESET
=================================== */

body.admin-menu {
  margin-top: 0 !important;
}

#admin-menu, .slicknav_menu {
  display: none !important;
}

::selection {
  background: #00763A;
  color: #fff;
}

::-moz-selection {
  background: #00763A;
  color: #fff;
}

*:focus {
  outline: none;
}

::-moz-focus-inner {
  border: 0;
}

select::-ms-expand {
  display: none;
}

/* ===================================
GENERIC RULES
=================================== */

html, body {
  height: initial !important;
  width: initial !important;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: 'Crimson';
  font-size: 18px;
  line-height: 26px;
  background: #f0f0f0;
  color: #1E1B16;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

b, strong {
  font-weight: 700;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

tbody {
  border: 0;
}

input, select, button, textarea {
  font-family: 'Crimson';
  border-radius: 0;
  background: #fff;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* --- ANIMATION --- */

.animate {
  opacity: 0;
  transform: translate(0, 50px);
}

.animate2 {
  opacity: 0;
  margin-top: 5%;
}

.done {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity .6s ease, transform .6s ease;
}

.done2 {
  opacity: 1;
  margin-top: 0;
  transition: opacity .6s ease, margin-top .6s ease;
}

/* --- MASK --- */

.mask:before,
.mask:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.mask:before {
  background: rgba(0,0,0,.6);
}

.mask:after {
  background: rgba(255,255,255,.2);
}

/* ===================================
SLIDESHOW
=================================== */

.bx-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
}

.bx-cover:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 201;
  background: rgba(0,0,0,.2);
}

.bx-cover .bx-canvas[data-pos="0"] {
  visibility: visible !important;
}

.bx-logo {
  width: 15%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 202;
  transform: translate(-50%,-50%);
}

.bx-logo svg {
  display: block;
}

.bx-logo polygon,
.bx-logo path {
  fill: #fff;
}

.bx-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  margin-top: 20px;
  margin-left: 80px;
  transform: translate(-50%,-50%);
  opacity: 0;
}

.bx-content-title {
  height: 36px;
}

.bx-content h2 {
  line-height: 36px;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  text-shadow: rgba(0,0,0,.16) 0 3px 6px;
  transition: all .6s;
}

.bx-content h2.loaded {
  opacity: 1;
}

.bx-content h2.remove {
  opacity: 0;
}

.bx-btn {
  display: block;
  min-width: 360px;
  font-size: 18px;
  background: #fff;
  color: #00763A;
  margin-top: 20px;
  padding: 22px 50px;
  box-sizing: border-box;
  text-transform: uppercase;
}

.bx-btn:hover {
  background: #00763A;
  color: #fff;
  cursor: pointer;
}

.bx-container {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.bx-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.2);
  z-index: 10;
}

.bx-thumbs {
  font-size: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 100;
  margin-left: 80px;
  transform: translate(-50%,0);
  opacity: 0;
}

.bx-thumbs span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  margin: 0 10px;
  transform: rotate(45deg);
  cursor: pointer;
  vertical-align: top;
}

.bx-thumbs span.cycle-pager-active {
  background: #00763A;
}

/* ===================================
HERO
=================================== */

#hero {
  height: 500px;
  position: absolute;
  top: 0;
  right: 0;
  left: 160px;
}

.gallery-page #hero {
  display: none;
}

.hero-title {
  line-height: 36px;
  font-size: 30px;
  color: #fff;
  padding: 0 15px;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%,-50%);
}

.hero-image {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-btn a {
  display: block;
  min-width: 360px;
  height: 69px;
  line-height: 69px;
  font-size: 18px;
  background: #fff;
  color: #00763A;
  margin-top: 20px;
  padding: 0 50px;
  box-sizing: border-box;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.hero-btn a:hover {
  background: #00763A;
  color: #fff;
}

.error-page #hero {
  height: auto;
  left: 0;
  bottom: 0;
}

.error-page .hero-image {
  background-image: url(../images/hero.jpg);
}

/* --- LOADING --- */

.step1 #acceptcookie {
  opacity: 1;
  transition: all 1s;
}

.step1 .bx-cover {
  opacity: 0;
  z-index: -1;
  transition: all 1s;
}

.step1 .bx-logo {
  opacity: 0;
  z-index: -1;
  transition: all 1s;
}

.step1 .bx-thumbs {
  opacity: 1;
  transition: all .3s 1s;
}

.step1 .bx-content {
  margin-top: 0;
  opacity: 1;
  transition: all 1s 1s;
}

/* ===================================
HEADER
=================================== */

#header {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 202;
  width: 160px;
  background: #fff;
  color: #00763A;
  padding: 15px 0;
  box-sizing: border-box;
}

.step1 .home-page #header {
  left: 0;
  transition: all .6s .6s;
}

.home-page #header {
  left: -200px;
}

.logo {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 0 15px;
  box-sizing: border-box;
}

.logo-flex {
  display: none;
  width: 133px;
}

.logo svg {
  display: block;
}

.logo polygon,
.logo path {
  fill: #00763A;
}

.header-btn {
  line-height: 20px;
  font-size: 16px;
  background: #F4F9F6;
  color: #00763A;
  padding: 19px 15px;
  text-transform: uppercase;
  position: absolute;
  bottom: 78px;
  right: 0;
  left: 0;
}

.header-btn span {
  display: block;
}

.header-btn:hover,
.header-btn.open {
  background: #00763A;
  color: #fff;
  cursor: pointer;
}

/* --- LANGS --- */

.langs {
  position: absolute;
  /*bottom: 78px;*/
  bottom: 0;
  right: 0;
  left: 0;
}

.langs a {
  display: block;
  height: 78px;
  line-height: 78px;
  font-size: 16px;
  color: #1E1B16;
  cursor: pointer;
  text-transform: uppercase;
}

.langs a:hover,
.langs a.open {
  background: #f0f0f0;
}

.other-langs {
  background: #f0f0f0;
  color: #1E1B16;
  position: fixed;
  top: 0;
  left: 160px;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.other-langs.open {
  z-index: 200;
  opacity: 1;
  visibility: visible;
}

.other-langs .content-close span {
  color: #fff;
}

.other-langs .content-close span:after {
  border-top-color: #1E1B16;
}

.other-langs > div:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.other-langs > div:last-child > div {
  margin-top: 30px;
}

.other-langs > div:last-child > div:first-child {
  margin-top: 0;
}

.other-langs a {
  line-height: 36px;
  font-size: 30px;
  font-style: italic;
  color: #1E1B16;
  position: relative;
  top: 30px;
  opacity: 0;
}

.other-langs a.faded {
  top: 0;
  opacity: 1;
  transition: all .8s;
}

.other-langs a.active {
  font-style: normal;
  font-weight: 700;
}

.other-langs a.select:after {
  content: '';
  height: 1px;
  background: #1E1B16;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  transition: all .3s;
}

.other-langs a.select:hover:after {
  right: 0;
}

/* --- MENU --- */

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  display: block;
  vertical-align: top;
}

.menu li a {
  display: block;
  line-height: 20px;
  font-size: 16px;
  color: #1E1B16;
  padding: 20px;
  text-transform: uppercase;
  /*word-wrap: break-word;*/
  position: relative;
  transition: opacity .8s .6s, top .8s .6s;
}

.home-page .menu li a {
  top: 30px;
  opacity: 0;
}

.menu li a.faded {
  top: 0;
  opacity: 1;
}

.menu li a.active,
.menu li a:hover {
  color: #00763A;
  transition: none;
}

/* --- HAMBURGER --- */

.hamburger-menu {
  display: none;
  width: 60px;
  height: 70px;
  line-height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 40px;
  cursor: pointer;
}

.hamburger-menu span {
  display: block;
  height: 2px;
  background: #00763A;
  margin: auto;
  position: absolute;
  right: 15px;
  left: 15px;
  transition: all .3s;
}

.hamburger-menu > span:nth-child(1) {
  top: 24px;
}

.hamburger-menu > span:nth-child(2) {
  top: 34px;
}

.hamburger-menu > span:nth-child(3) {
  top: 44px;
}

.hamburger-menu.open > span:nth-child(1) {
  top: 34px;
  transform: rotate(-45deg);
}

.hamburger-menu.open > span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.open > span:nth-child(3) {
  top: 34px;
  transform: rotate(45deg);
}

/* --- CONTAINER --- */

.header-container {
  background: #00763A;
  color: #fff;
  padding: 60px 15px;
  position: fixed;
  top: 70px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-container.open {
  z-index: 201;
  opacity: 1;
  visibility: visible;
}

.header-container .menu {
  display: block;
}

.header-container .menu li a,
.header-container .langs a {
  display: inline-block;
  height: auto;
  line-height: 30px;
  font-size: 24px;
  font-style: italic;
  color: #fff;
  margin-top: 30px;
  padding: 5px 15px;
  position: relative;
  top: 30px;
  opacity: 0;
  text-transform: inherit;
}

.header-container .langs a {
  line-height: 26px;
  font-size: 18px;
  margin-top: 20px;
}

.header-container .menu li a.faded,
.header-container .langs a.faded {
  top: 0;
  opacity: 1;
  transition: all .8s;
}

.header-container .menu li a.active,
.header-container .langs a.active {
  font-style: normal;
  font-weight: 700;
}

.header-container .menu li a.active:hover:after,
.header-container .langs a.active:hover:after {
  display: none;
}

.header-container .menu li a:after,
.header-container .langs a:after {
  content: '';
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -2px;
  left: 15px;
  right: 100%;
  transition: all .3s;
}

.header-container .menu li a:hover:after,
.header-container .langs a:hover:after {
  right: 15px;
}

.header-container .langs {
  display: block;
  margin-top: 60px;
  position: relative;
  bottom: auto;
  right: auto;
  left: auto;
}

.header-container .langs a.active i {
  font-size: 14px;
  margin-left: 10px;
}

.header-container .langs a:hover,
.header-container .langs a.open {
  background: transparent;
}

.header-container .langs a.open i:before {
  content: '\f077';
}

.header-container .other-langs {
  width: 100%;
  background: transparent;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.header-container .other-langs a {
  top: 0;
  opacity: 1;
}

.header-container .other-langs a.faded {
  transition: none;
}

.header-container .other-langs.open {
  display: block;
}

.header-container .other-langs > div:last-child {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}

.header-container .other-langs > div:last-child > div {
  margin-top: 0;
}

/* ===================================
BOOKING ENGINE
=================================== */

/*.home-page #widget {
display: none;
}*/

.widget-title {
  margin-top: 50px;
}

#widget {
  display: inline-block;
  font-size: 0;
  margin: auto;
}

#widget > div {
  display: inline-block;
  width: 174px;
  height: 58px;
  line-height: 58px;
  font-size: 16px;
  border: 1px solid #494C47;
  border-right: 0;
  box-sizing: border-box;
  padding: 0 25px;
  text-align: left;
  vertical-align: top;
  cursor: pointer;
}

#widget > div:last-child {
  width: 248px;
  background: #494C47;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}

#widget > div i {
  float: left;
  font-size: 20px;
  color: #747E78;
  margin: 18px 12px 0 0;
}

#widget > div > div {
  display: inline-block;
}

#booking {
  background: #00763A;
  color: #fff;
  position: fixed;
  top: 0;
  left: 160px;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#booking.open {
  z-index: 200;
  opacity: 1;
  visibility: visible;
}

#booking #searchbox {
  max-width: 330px;
  margin: auto;
  padding: 100px 0 350px 0;
}

#booking .booking-title {
  font-size: 30px;
  margin-bottom: 60px;
}

#booking .booking-title,
#booking form .checkinLabel,
#booking form > div {
  position: relative;
  top: 30px;
  opacity: 0;
  transition: all .8s;
}

#booking .booking-title.faded,
#booking form .checkinLabel.faded,
#booking form > div.faded {
  top: 0;
  opacity: 1;
}

#booking input[name="checkin"],
#booking input[name="checkout"] {
  display: none;
}

#booking .booking-btn {
  display: none;
  height: 53px;
  line-height: 53px;
  font-family: 'Revisal';
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  color: #00763A;
  text-transform: uppercase;
  border: 0;
  border-radius: 50px;
  letter-spacing: .5px;
  padding: 0 50px;
  cursor: pointer;
}

#booking label {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
}

#booking .checkoutLabel {
  display: none;
}

#booking .datepicker {
  margin-bottom: 70px;
}

#booking .guesttypes > div {
  font-size: 0;
  background: #fff;
  color: #00763A;
  margin-top: 20px;
  padding: 10px 20px 10px 30px;
  text-align: right;
  position: relative;
}

#booking .guesttypes > div label {
  display: inline-block;
  float: left;
  line-height: 40px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0;
  vertical-align: top;
}

#booking .guesttypes select {
  position: absolute;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

#booking .select-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #00763A;
  font-size: 16px;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  vertical-align: top;
  position: relative;
}

#booking .select-btn:hover {
  background: #00763A;
  color: #fff;
}

#booking .select-btn.disabled:hover {
  background: transparent;
}

#booking .select-btn.disabled:hover,
#booking .select-btn.disabled {
  color: #CBE3D6;
  cursor: default;
}

#booking .select {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#booking .select.disabled {
  color: #CBE3D6;
}

#booking .coupon {
  margin: 50px 0;
  position: relative;
}

#booking .coupon label {
  height: 60px;
  line-height: 60px;
  margin: 0;
  cursor: pointer;
}

#booking .coupon input {
  display: none;
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-family: 'Crimson';
  font-size: 16px;
  font-weight: 500;
  background: #00763A;
  color: #fff;
  border: 1px solid #fff;
  box-sizing: border-box;
  padding: 0 30px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

#booking .coupon input.open {
  display: block;
  z-index: 2;
}

#booking input[name="coupon"]::-webkit-input-placeholder {
  font-style: normal !important;
  color: #fff;
  opacity: 1;
}

#booking input[name="coupon"]:-moz-placeholder {
  font-style: normal !important;
  color: #fff;
  opacity: 1;
}

#booking input[name="coupon"]::-moz-placeholder {
  font-style: normal !important;
  color: #fff;
  opacity: 1;
}

#booking input[name="coupon"]:-ms-input-placeholder {
  font-style: normal !important;
  color: #fff;
  opacity: 1;
}

#booking input[type="submit"] {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-family: 'Crimson';
  font-size: 18px;
  font-weight: 400;
  background: #CBE3D6;
  color: #00763A;
  text-transform: uppercase;
  border: 0;
  padding: 0 50px;
  cursor: pointer;
}

#booking input[type="submit"]:hover {
  background: #fff;
}

/* ===================================
CONTENT
=================================== */

#main {
  position: absolute;
  top: 500px;
  left: 160px;
  right: 0;
  background: #f0f0f0;
  overflow: hidden;
}

.home-page #main {
  top: 100%;
  z-index: 2;
  opacity: 0;
}

.gallery-page #main {
  top: 0;
}

.step1 #main {
  opacity: 1;
  transition: opacity .3s 1s;
}

.content-title {
  line-height: 36px;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 20px;
}

.content-close {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}

.content-close span {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  color: #00763A;
  cursor: pointer;
}

.content-close span i {
  position: absolute;
  top: 8px;
  right: 9px;
  z-index: 2;
}

.content-close span:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 60px solid #CBE3D6;
  border-left: 60px solid transparent;
  position: absolute;
  top: 0;
  right: 0;
}

.content-separator {
  height: 12px;
  margin: 80px auto;
  overflow: hidden;
}

.content-separator:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #1E1B16;
  margin: 2px auto 0 auto;
  transform: rotate(45deg);
}

.content-btn {
  display: inline-block;
  font-weight: 700;
  color: #00763A;
  margin: 25px auto 0 auto;
  padding: 5px 20px;
  cursor: pointer;
  text-transform: lowercase;
}

.content-btn:before {
  display: inline-block;
  content: '';
  width: 30px;
  height: 1px;
  background: #00763A;
  margin-right: 10px;
  vertical-align: middle;
}

/* ===================================
SECTION
=================================== */

.section {
  margin: 80px 0;
}

.section-img {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.section-wrap {
  width: 40%;
  background: rgba(255,255,255,.9);
  color: #1E1B16;
  box-sizing: border-box;
  padding: 5% 7%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  overflow: hidden;
  transform: translate(-50%,-50%);
}

.section-wrap > div {
  position: relative;
  z-index: 2;
}

.section-desc {
  display: -webkit-box;
  height: 104px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-desc a {
  color: #1E1B16;
  text-decoration: underline;
}

/* ===================================
PARAGRAPH
=================================== */

.paragraph {
  max-width: 600px;
  margin: 80px auto;
}

.box-desc a,
.paragraph a,
.poi-item-desc a,
.section-desc a {
  color: #1E1B16;
  text-decoration: underline;
}

.blank-page .paragraph {
  text-align: left;
}

/* ===================================
BOX
=================================== */

.box {
  margin: 80px 0;
}

.box > .content-title {
  margin-bottom: 50px;
}

.box-item {
  max-width: 950px;
  margin: 0 auto 80px auto;
  position: relative;
}

.home-page .box-item:first-child .content-separator {
  display: none;
}

.home-page .box-item:first-child .box-gallery {
  top: 0;
}

.box-txt {
  min-height: 780px;
  padding-top: 20px;
  padding-left: 550px;
  text-align: left;
  box-sizing: border-box;
}

.box-txt.no-btn {
  min-height: 750px;
}

.box-txt > h3 {
  font-style: normal;
}

.box-btn {
  text-align: right;
}

.box-check a {
  display: inline-block;
  height: 49px;
  line-height: 49px;
  background: #fff;
  color: #1E1B16;
  font-size: 14px;
  margin-top: 12px;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 4;
}

.box-check a:hover {
  background: #1E1B16;
  color: #fff;
}

.box-gallery {
  display: block;
  position: absolute;
  top: 92px;
  right: 450px;
  bottom: 0;
  left: 0;
}

.box-gallery a {
  display: block;
  height: 750px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  vertical-align: top;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.box-gallery img {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* --- EVEN ITEMS --- */

.box-item:nth-child(even) .box-gallery {
  right: 0;
  left: 450px;
}

.box-item:nth-child(even) .box-txt {
  padding-right: 550px;
  padding-left: 0;
  text-align: right;
}

/* --- CONTROLS --- */

.box-gallery .owl-dots {
  width: 140px;
  height: 60px;
  line-height: 60px;
  counter-reset: slides-num;
  font-size: 18px;
  color: #1E1B16;
  background: #fff;
  position: absolute;
  bottom: -30px;
  left: 180px;
}

.box-gallery .owl-dots:after {
  content: counter(slides-num);
  display: inline-block;
  margin-left: 4px;
  vertical-align: top;
}

.box-gallery .owl-dot {
  display: inline-block;
  font-size: 18px;
  color: #1E1B16;
  counter-increment: slides-num;
  background: none;
  border: 0;
  padding: 0;
}

.box-gallery .owl-dot span {
  display: none;
}

.box-gallery .owl-dot.active:before {
  content: counter(slides-num) ' /';
  display: inline-block;
  vertical-align: top;
}

.box-gallery .owl-nav button {
  width: 130px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  background: #fff;
  color: #b2b2b2;
  border: 0;
  padding: 0;
  position: absolute;
  bottom: -30px;
}

.box-gallery .owl-nav button:hover {
  color: #1E1B16;
}

.box-gallery .owl-nav button span {
  display: none;
}

.box-gallery .owl-prev {
  left: 50px;
}

.box-gallery .owl-next {
  right: 50px;
}

.box-gallery .owl-prev:before,
.box-gallery .owl-next:before {
  font-family: 'Font Awesome 5 Pro';
}

.box-gallery .owl-prev:before {
  content: '\f053';
}

.box-gallery .owl-next:before {
  content: '\f054';
}

/* ===================================
ROOMS
=================================== */

.home-page .rooms > .content-title {
  margin-bottom: 50px;
}

.room {
  color: #fff;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all .3s;
}

.room:after {
  content: '\f03e';
  font-family: 'Font Awesome 5 Pro';
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  opacity: .5;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}

.room-hero {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.room-hero > div:first-child {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.room-gallery {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  overflow: hidden;
}

.room-gallery img {
  opacity: 0;
}

.room-title {
  position: relative;
  display: table;
  max-width: 700px;
  min-height: 580px;
  color: #fff;
  margin: auto;
  box-sizing: border-box;
}

.room-title > div {
  display: table-cell;
  height: 100%;
  padding: 120px 24px;
  box-sizing: border-box;
  vertical-align: middle;
}

.room-title .content-title {
  font-style: normal;
  margin-bottom: 0;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.room-title-btn,
.room-title-close {
  opacity: 0;
  transition: all .3s;
}

.room-title-close {
  display: none;
  cursor: pointer;
}

.room-wrap {
  max-height: 0;
  opacity: 0;
  position: relative;
  top: 170px;
  z-index: -1;
}

.room .box-gallery {
  top: 0;
}

.room-close {
  height: 80px;
  line-height: 80px;
  font-size: 24px;
  background: rgba(39,33,22,.5);
  position: absolute;
  bottom: -160px;
  right: 0;
  left: 0;
  cursor: pointer;
}

.room.open .room-title .content-title,
.room:hover .room-title .content-title {
  top: 0;
}

.room.open .room-title-close,
.room:hover .room-title-btn {
  opacity: 1;
  top: 36px;
}

.room.open {
  cursor: default;
}

.room.open .room-hero:before {
  background: rgba(0,0,0,.9);
}

.room.open .room-title-btn {
  display: none;
}

.room.open .room-title-close {
  display: block;
}

.room.open .room-wrap {
  max-height: 9999px;
  top: 140px;
  z-index: 1;
  opacity: 1;
  transition: max-height 1.3s, opacity .3s, top .3s;
}

/* ===================================
OFFERS
=================================== */

.offers {
  margin: 80px auto;
  padding: 0 84px;
}

.offers .owl-carousel {
  margin-top: 50px;
}

.offer {
  display: block;
  color: #fff;
  vertical-align: top;
  position: relative;
}

.offer-img {
  background: #fff;
}

.offer-img div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100%;
}

.offer-txt {
  padding: 40px 50px 20px 50px;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  box-sizing: border-box;
  transform: translateY(-50%);
  transition: all .3s;
}

.offer h3 {
  max-height: 72px;
  line-height: 36px;
  font-size: 30px;
  font-weight: 400;
  overflow: hidden;
}

.offer-path {
  opacity: 0;
  text-transform: lowercase;
  transition: all .3s;
}

.offer:hover .offer-txt {
  padding-top: 20px;
}

.offer:hover .offer-path {
  opacity: 1;
}

/* --- LIST --- */

.offers-list {
  max-width: 950px;
  margin: -20px auto 80px auto;
}

.offers-list a {
  display: block;
  height: 333px;
  background: #fff;
  color: #1E1B16;
  margin-top: 50px;
  position: relative;
}

.offer-list-img {
  position: absolute;
  top: 0;
  right: 450px;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.offer-list-txt {
  max-width: 450px;
  margin: 0 0 0 auto;
  padding: 50px 50px 80px 50px;
  box-sizing: border-box;
  text-align: left;
}

.offer-list-txt .content-title {
  display: -webkit-box;
  height: 72px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: normal;
}

.offer-list-txt .content-btn {
  margin-top: 45px;
  padding-right: 0;
  padding-left: 0;
}

.offer-list-desc {
  display: -webkit-box;
  height: 78px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- CONTROLS --- */

.offers .owl-nav button {
  width: 84px;
  font-size: 18px;
  background: none;
  color: #1E1B16;
  border: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: .3;
}

.offers .owl-nav button:hover {
  opacity: 1;
}

.offers .owl-nav button span {
  display: none;
}

.offers .owl-prev {
  left: -84px;
}

.offers .owl-next {
  right: -84px;
}

.offers .owl-prev:before,
.offers .owl-next:before {
  font-family: 'Font Awesome 5 Pro';
}

.offers .owl-prev:before {
  content: '\f053';
}

.offers .owl-next:before {
  content: '\f054';
}

/* ===================================
GALLERY
=================================== */

.gallery-page .paragraph {
  margin-bottom: 0;
}

.gallery {
  font-size: 0;
  padding: 0 70px;
  text-align: left;
  overflow: hidden;
}

.gallery .content-title {
  margin-bottom: 0;
  text-align: center;
  transition: all .3s;
}

.gallery-wrap {
  margin-bottom: 80px;
  opacity: 0;
  position: relative;
  transition: all .3s;
}

.gallery-wrap.open {
  opacity: 1;
}

.gallery-wrap:last-child {
  margin-bottom: 0;
}

.gallery-mask {
  position: absolute;
  top: 128px;
  right: 0;
  left: 0;
}

.gallery-mask > div {
  display: inline-block;
  width: 33.333%;
  width: calc(33.333% - 30px);
  background: #E6E6E6;
  margin: 30px 15px 0 15px;
  padding-bottom: calc(33.333% - 30px);
  vertical-align: top;
}

.gallery a {
  display: inline-block;
  width: 33.333%;
  width: calc(33.333% - 30px);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 30px 15px 0 15px;
  padding-bottom: calc(33.333% - 30px);
  vertical-align: top;
  position: relative;
  z-index: 2;
  opacity: 0;
}

.gallery a.faded {
  opacity: 1;
  transition: all .3s;
}

.gallery a img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.gallery a:before,
.gallery a:after {
  opacity: 0;
  transition: all .1s;
}

.gallery a:hover:before,
.gallery a:hover:after {
  opacity: 1;
}

.gallery-videos a i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  font-size: 40px;
  color: #fff;
  transform: translate(-50%,-50%);
}

.video-wrapper {
  height: 100%;
  padding: 50px 0;
}

/* --- FILTERS --- */

.gallery-filters {
  position: fixed;
  top: -60px;
  right: 0;
  left: 160px;
  z-index: 3;
  padding: 0 85px;
  background: #fff;
  text-align: center;
  transition: all .2s;
}

.gallery-filters.open {
  top: 0;
}

.gallery-filters .owl-item {
  min-width: 200px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: #00763A;
  cursor: pointer;
  text-transform: uppercase;
}

.gallery-filters .owl-item > div {
  position: relative;
}

.gallery-filters .owl-item > div:before {
  content: '';
  height: 2px;
  background: #00763A;
  position: absolute;
  bottom: 0;
  left: 1px;
  right: 100%;
  transition: all .3s;
}

.gallery-filters .owl-item > div:hover:before,
.gallery-filters .owl-item > div.active:before {
  right: 0;
}

/* ===================================
poi
=================================== */

.poi {
  max-width: 950px;
  margin: auto;
}

.poi-wrap {
  margin-top: 50px;
  position: relative;
}

.poi-img {
  width: 500px;
  height: 500px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 450px;
  left: 0;
}

.poi-img > div {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  opacity: 0;
  transition: all .6s;
}

.poi-img > div.loaded {
  opacity: 1;
}

.poi .owl-carousel {
  width: 450px;
  height: 500px;
  background: #fff;
  margin: 0 0 0 auto;
  padding: 110px 50px 80px 50px;
  box-sizing: border-box;
}

.poi-item {
  text-align: left;
}

.poi-item-img {
  display: none;
}

.poi-item .content-title {
  font-style: normal;
  margin-bottom: 0;
}

.poi-label {
  color: #00763A;
}

.poi-item-desc {
  height: 200px;
  margin-top: 15px;
  overflow: hidden;
}

/* --- CONTROLS --- */

.poi .owl-dots {
  width: 80px;
  height: 40px;
  line-height: 40px;
  counter-reset: slides-num;
  font-size: 18px;
  color: #1E1B16;
  background: #fff;
  position: absolute;
  top: 40px;
  left: 80px;
}

.poi .owl-dots:after {
  content: counter(slides-num);
  display: inline-block;
  margin-left: 4px;
  vertical-align: top;
}

.poi .owl-dot {
  display: inline-block;
  font-size: 18px;
  color: #1E1B16;
  counter-increment: slides-num;
  background: none;
  border: 0;
  padding: 0;
}

.poi .owl-dot span {
  display: none;
}

.poi .owl-dot.active:before {
  content: counter(slides-num) ' /';
  display: inline-block;
  vertical-align: top;
}

.poi .owl-nav button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  background: #fff;
  color: #1E1B16;
  border: 0;
  padding: 0;
  position: absolute;
  top: 40px;
  opacity: .3;
}

.poi .owl-nav button:hover {
  opacity: 1;
}

.poi .owl-nav button span {
  display: none;
}

.poi .owl-prev {
  left: 40px;
}

.poi .owl-next {
  left: 160px;
}

.poi .owl-prev:before,
.poi .owl-next:before {
  font-family: 'Font Awesome 5 Pro';
}

.poi .owl-prev:before {
  content: '\f053';
}

.poi .owl-next:before {
  content: '\f054';
}

/* ===================================
MACRO BTN
=================================== */

.macro-btn {
  display: block;
  height: 500px;
  position: relative;
}

.macro-btn-hero {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.macro-btn-title {
  color: #fff;
  font-style: normal;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: all .3s;
}

.macro-btn-label {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  margin-top: 30px;
  text-transform: lowercase;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: all .3s;
}

.macro-btn:hover .macro-btn-title {
  margin-top: -10px;
}

.macro-btn:hover .macro-btn-label {
  margin-top: 20px;
  opacity: 1;
}

/* ===================================
MAP
=================================== */

.map-container {
  height: 500px;
  background: #f0f0f0;
  position: absolute;
  top: 0;
  right: 0;
  left: 160px;
  overflow: hidden;
}

#map {
  width: 100%;
  height: 100%;
}

.gmnoprint a,
.gmnoprint span,
.gm-style a,
.gm-style-cc {
  display: none;
}

.gmnoprint div {
  background: none !important;
}

.gm-style-pbc {
  z-index: 9999 !important;
}

img[src="https://maps.gstatic.com/mapfiles/api-3/images/google_white5.png"], a[href^="https://maps.google.com/maps"]{
  display:none !important;
}

#map.indexed {
  z-index: 0;
}

#map img {
  max-width: inherit;
}

/* --- CONTROLS --- */

#map-controls {
  font-size: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -40px;
}

#map-controls div {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  background: #fff;
  color: #1E1B16;
  cursor: pointer;
  vertical-align: top;
}

#map-controls div:hover {
  background: #1E1B16;
  color: #fff;
}

/* --- MARKER --- */

.marker {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 0;
  background: rgba(0,118,58,.7);
  border: 2px solid #fff;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*.marker:after {
content: '';
position: absolute;
width: 31px;
height: 31px;
top: 9px;
left: 10px;
background: #f0f0f0;
border-radius: 50%;
}*/

/* ===================================
WEBFORM
=================================== */

.contacts > div {
  max-width: 500px;
  margin: auto;
}

.contacts > div.contacts-wrap {
  margin-bottom: 50px;
}

.contacts-wrap a {
  color: #1E1B16;
}

.webform-client-form {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.webform-client-form > div {
  font-size: 0;
}

.form-item {
  width: 100%;
  max-width: 400px;
  margin: 10px auto 0 auto;
  vertical-align: top;
  position: relative;
}

.form-item input {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 18px;
  background: #fff;
  color: #1E1B16;
  padding: 0 20px;
  border: 1px solid #848484;
  box-sizing: border-box;
  text-align: center;
}

.form-item textarea {
  width: 100%;
  height: 275px;
  line-height: 26px;
  font-size: 18px;
  background: #fff;
  color: #1E1B16;
  padding: 20px;
  border: 1px solid #848484;
  box-sizing: border-box;
  text-align: center;
  vertical-align: top;
  resize: none !important;
}

.form-item .grippie {
  display: none !important;
}

.form-actions input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  max-width: 300px;
  background: #00763A;
  color: #fff;
  font-size: 16px;
  margin: 30px auto 0 auto;
  padding: 0 20px;
  border: 0;
  box-sizing: border-box;
  text-transform: uppercase;
  cursor: pointer;
}

.form-actions input:hover {
  background: #1E1B16;
}

/* --- PRIVACY --- */

.form-item.webform-component--privacy {
  margin: 30px auto 0 auto;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.form-item.form-item-data-protection {
  display: inline-block;
  width: auto;
  margin-top: 20px;
  padding-right: 50px;
  box-sizing: border-box;
  position: relative;
}



.form-item-data-protection label {
  display: inline-block;
  font-size: 18px;
  line-height: 36px;
  color: #000;
  font-weight: 400;
  margin: 0;
  cursor: pointer;
}

.form-item-data-protection label a {
  color: #000;
  text-transform: lowercase;
  text-decoration: underline;
}

.form-item-data-protection label:before {
  content: '';
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #848484;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.form-item-data-protection label:after {
  content: '';
  width: 14px;
  height: 7px;
  position: absolute;
  top: 10px;
  right: 9px;
  border: 3px solid #848484;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.form-item-data-protection input {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.form-item-data-protection input.error + label:before {
  background: rgba(255,0,0,.1);
}

.form-item-data-protection input:checked + label:after {
  opacity: 1;
}

/* --- CAPTCHA --- */

.captcha {
  font-size: 18px;
  line-height: 50px;
  color: #000;
  margin-top: 30px;
  vertical-align: top;
}

.captcha .form-item {
  width: auto;
}

.captcha .form-item .description {
  display: none;
}

.captcha .form-item input {
  display: inline-block;
  width: 200px;
  height: 50px;
  margin-left: 10px;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

.captcha label {
  display: none;
}

/* --- PLACEHOLDER --- */

::-webkit-input-placeholder {
  font-style: normal !important;
  color: #848484;
  opacity: 1;
}

:-moz-placeholder {
  font-style: normal !important;
  color: #848484;
  opacity: 1;
}

input::-moz-placeholder {
  font-style: normal !important;
  color: #848484;
  opacity: 1;
}

:-ms-input-placeholder {
  font-style: normal !important;
  color: #848484;
  opacity: 1;
}

/* --- ERROR MESSAGES --- */

.messages.error {
  display: none;
}

.messages.error ul {
  list-style: none;
  background: #DED0CD;
  color: #8c2e0b;
  border-radius: 6px;
  margin: 0;
  padding: 30px;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #848484;
  background: rgba(255,0,0,.1);
}

/* --- AJAX THROBBER --- */

.ajax-progress-throbber {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f0f0f0;
  z-index: 999;
}

.ajax-progress-throbber .message {
  display: none;
}

.ajax-progress-throbber .throbber {
  width: 40px;
  height: 40px;
  background: none;
  border: 3px solid #00763A;
  border-top-color: transparent;
  border-radius: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
  animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
}

/* --- MESSAGES --- */

.webform-confirmation {
  margin: 0;
  border: 0;
}

.webform-confirmation p {
  margin: 0;
  padding: 0;
}

.links {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.links a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  background: #00763A;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 50px auto 0 auto;
  padding: 0 50px;
  border: 0;
  border-radius: 6px;
  box-sizing: border-box;
  text-transform: uppercase;
  cursor: pointer;
}

.links a:hover {
  background: #58851E;
}

/* ===================================
FOOTER
=================================== */

#footer {
  display: table;
  width: 100%;
  background: #747E78;
  color: #fff;
}

#footer > div {
  display: table-cell;
  width: 50%;
  padding: 50px;
  box-sizing: border-box;
  vertical-align: top;
  position: relative;
}

#footer > div:last-child {
  text-align: right;
}

.footer-logo {
  width: 240px;
  position: relative;
  bottom: auto;
  left: auto;
}

.footer-logo svg {
  display: block;
}

.footer-logo polygon,
.footer-logo path {
  fill: #fff;
}

.footer-contacts {
  margin-top: 50px;
  text-align: left;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  color: #fff;
  margin-left: 30px;
  text-align: center;
  vertical-align: top;
}

.footer-copy {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

#footer a {
  color: #fff;
}

/* ===================================
COOKIE POLICY
=================================== */

#acceptcookie {
  margin: 0;
  padding: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 160px;
  height: 100%;
  z-index: 90;
  opacity: 0;
}

.cookie-mask {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.cookie-cont {
  position: absolute;
  top: 30px;
  right: 15px;
  left: 15px;
}

.cookie-cont > div {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  background: rgba(255,255,255,.9);
  color: #1E1B16;
  box-sizing: border-box;
  margin: auto;
  padding: 15px 20px;
}

.cookie-text {
  display: inline-block;
}

.cookie-text a {
  display: inline-block;
  color: #00763A;
  margin-left: 10px;
  text-decoration: underline;
}

.cookie-button {
  display: none;
}

/* ===================================
USER PAGE
=================================== */

#profile {
  width: 100%;
  height: 100%;
}

#profile .messages {
  display: block;
}

.profile-container {
  max-width: 400px;
  margin: 100px auto 0 auto;
}

.profile-container .logo {
  display: block;
  width: 200px;
  margin: 0 auto 30px auto;
}

.profile-container svg {
  display: block;
    width: 200px;
    margin: 0 auto 30px auto;
}

.profile-container polygon,
.profile-container path {
  fill: #00763A;
}

.profile-container form label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #1E1B16;
  line-height: 26px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.profile-container form label span {
  color: #000;
}

#user-login .form-item,
#user-pass .form-item {
  display: block;
  float: none;
  width: 100%;
  margin: 20px 0 0 0 !important;
}

#user-login .form-item:before, #user-pass .form-item:before,
#user-login .description, #user-pass .description {
  display: none;
}

#user-login input,
#user-pass input {
  width: 100%;
  height: 50px;
  font-size: 18px;
  margin: auto;
  padding: 0 20px;
  line-height: normal;
  background-color: #fff;
  color: #1E1B16;
  border: 1px solid #848484;
  box-sizing: border-box;
  cursor: pointer;
}

#user-login .form-actions,
#user-pass .form-actions {
  display: block;
  float: none;
  margin: 50px auto 0 auto !important;
  text-align: center;
}

#user-login input[type="submit"],
#user-pass input[type="submit"] {
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 300px;
  height: 50px;
  line-height: 40px;
  background: #00763A;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto;
  padding: 0 20px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

#user-login input[type="submit"]:hover,
#user-pass input[type="submit"]:hover {
  background: #1E1B16;
}

#user-pass label {
  display: block;
  width: auto;
}

#user-profile a {
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  background: #fff;
  color: #1E1B16;
  border: 1px solid #848484;
  margin-top: 30px;
}

#user-profile h1,
#user-profile h4 {
  display: none;
}

#user-profile .exit {
  display: inline-block;
  width: auto;
  min-width: 200px;
  height: 50px;
  line-height: 50px;
  background: #00763A;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin: 50px auto 0 auto;
  padding: 0 20px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

#user-profile .exit:hover {
  background: #1E1B16;
}

/* --- MESSAGES --- */

#profile div.messages {
  font-size: 14px;
  line-height: 24px;
  background: none;
  color: #a10000;
  border: 0;
  margin: 5px 0 0 0;
  padding: 0;
}

#profile div.messages a {
  color: #a10000;
  text-decoration: underline;
}
/*Override photoswièe theme start*/
.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
  opacity: 1;
}
.pswp__button--arrow--left, .pswp__button--arrow--right {
top:auto;
}
.pswp__button--arrow--left:before, .pswp__button--arrow--right:before {

  background-color: rgba(0, 0, 0, 0.3);
  height: auto;
  width: auto;
  position: relative;
  top:0px
}
.pswp__button{
  float: none;
}
.pswp__top-bar {
 
  background: transparent;
}
.pswp__counter{
  top: auto;
  /* background: white!important; */
  opacity: 1;
}
.pswp__ui--idle .pswp__top-bar {
  opacity: 1;
}
.js-form-type-checkbox label a{
  color: #000;
  text-transform: lowercase;
  text-decoration: underline;
}
.form-checkbox{
  appearance: auto;
  -moz-appearance: none;
  -webkit-appearance: auto;
  width: 36px!important;
  height: 36px!important;
  position: absolute;
  top: 0;
  right: 0;
}
.form-submit{
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  max-width: 300px;
  background: #00763A;
  color: #fff;
  font-size: 16px;
  margin: 30px auto 0 auto;
  padding: 0 20px;
  border: 0;
  box-sizing: border-box;
  text-transform: uppercase;
  cursor: pointer;
}
#user-login-form #edit-name--description, #user-login-form  #edit-pass--description{
  display: none;
}

/*SLIDER PALLINI*/

.bx-thumbs span:nth-child(5),.bx-thumbs span:nth-child(6) ,.bx-thumbs span:nth-child(7) ,.bx-thumbs span:nth-child(8)  {
  display: none;
}

.webform-submission-contact-form ul{
  display: none;
  }

  .form-item-data-protection input.error + label::before {
    background: rgba(255,0,0,.1);
}
