/*Your Custom CSS*/

@charset "utf-8";

/*Spacing Utility*/
.p-0 {
    padding: 0;
}

.pl-0 {
    padding-left: 0;
}
.pl-30 {
    padding-left: 30px;
}

.pt-30{
  padding-top: 30px;
}
.pt-40{
  padding-top: 40px;
}
.pt-20 {
    padding-top: 20px;
}

.mh-600 {
    min-height: 600px;

}

.h-400 {
    height: 400px !important;
}

.h-100 {
    height: 100%;
}
.w-100{
  width: 100%;
}

.my-100{
  margin: 100px 0px;
}

.top-spacer-100 {
    margin-top: 100px;
}
.top-spacer-65 {
    margin-top: 65px;
}

.bottom-spacer-100 {
    margin-bottom: 100px;
}

.top-spacer-50 {
    margin-top: 50px;
}

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

.text-white {
    color: #fff !important;
}



/*Button Shadow and Outline Reset*/

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
.btn.active,
.btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a,
a:hover,
a:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #3c3c3b;
    background: #f8f8f8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

h1 {
    margin-top: 0;
    padding-bottom: 20px;
    font-size: 3.750em;
}

h5 {
    font-size: 1.563em;
}

h3 {
    line-height: 1.4;
    font-size: 1.250em;
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    color: #636364;
    font-size: 1em;
}


/*Header CSS*/

.header {
    z-index: 10;
    height: 80px;
    background: #f8f8f8;
    position: fixed;
    top: 0;
    width: 100%;
}

main {
    margin-top: 80px;
}

.logo img {
    padding-top: 11px;
    height: 69px;
    width: auto;
}

.menu-button,
.book-button {
    padding-top: 18px;
    padding-bottom: 18px;
}

.btn-custom {
    font-family: 'Playfair Display', serif;
    border-radius: 0;
    background: none;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 7px 40px;
    font-size: 1.250em;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-custom.focus,
.btn-custom:focus,
.btn-custom:hover {
    background: #cfaa42;
    color: #fff;
    border-color: #cfaa42;
}

.btn-book {
    float: right;
    font-family: 'Playfair Display', serif;
    border-radius: 0;
    background: none;
    color: #cfaa42;
    text-transform: uppercase;
    border: 1px solid #636363;
    padding: 7px 21px;
    font-size: 1.250em;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-book.focus,
.btn-book:focus,
.btn-book:hover {
    background: #cfaa42;
    color: #fff;
    border-color: #cfaa42;
}

.btn-menu {
    font-family: 'Playfair Display', serif;
    border-radius: 0;
    background: none;
    color: #cfaa42;
    text-transform: uppercase;
    border: 1px solid #636363;
    padding: 7px 21px;
    font-size: 1.250em;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.menu-icon {
    font-size: 20px;
}

.btn-menu.focus,
.btn-menu:focus,
.btn-menu:hover {
    background: #cfaa42;
    color: #fff;
    border-color: #cfaa42;
}

.navigation {
    text-align: center;
    padding: 29px 0px;
}

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

.navigation ul li {
    display: inline-block;
    margin-right: 20px;
}

.navigation ul li.active a{
    color: #cfaa42;
}

.navigation ul li:last-child {
    margin-right: 0;
}

.navigation ul li a {
    font-family: 'Playfair Display', serif;
    font-size: 1.250em;
    color: #3c3c3c;
    font-weight: 400;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.navigation ul li a:hover {
    color: #cfaa42;
}


/*subnav*/

.subnavopen {
    display: none;
}

.subnav {
    position: relative;
    background: #cfaa42;
    line-height: 55px;
    color: #fff;
    height: 55px;
}

.subnav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.subnav ul li {
    display: inline-block;
    margin: 0px 10px;
    position: relative;
    line-height: 55px;
}

.subnav ul li.active::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: 0;
    border-top: 10px solid rgb(207, 170, 66);
    border-left: 20px solid rgba(234, 234, 234, 0);
    border-right: 20px solid rgba(0, 0, 0, 0);
    border-bottom: 0px;
    clear: both;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.subnav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: block;
}
.subnav ul li.active a{
  font-weight: 600;
}

.subnav.fixed {
    position: fixed;
    top: 80px;
    right: 0px;
    left: 0px;
    z-index: 11;
    -ms-transition:     all 0.3s ease-out;
    -moz-transition:    all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition:      all 0.3s ease-out;
    transition:         all 0.3s ease-out;
}


/*Overlay Menu*/

.overlay-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(207, 170, 66, 0.98);
    z-index: 999999;
}

.overlay-menu .menu {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.overlay-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.250em;
}

.overlay-menu h5 {
    color: #fff;
    text-transform: uppercase;
}

.overlay-menu nav ul a {
    color: inherit;
    line-height: 35px;
    font-family: 'Playfair Display', serif;
}

.btn-close {
    width: 43px;
    height: 38px;
    position: absolute;
    display: block;
    left: 40px;
    top: 23px;
    background-image: url(../img/btn-close.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 10px 7px;
    z-index: 100;
    cursor: pointer;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.overlay-menu.active {
    display: block;
}


/*Banner CSS*/

.banner {
    background-position: center center;
    background-size: cover;
    position: relative;
}

.banner-logo {
    position: absolute;
    height: 160px;
    top: 100px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    z-index: 2;
}

.banner.big {
    height: calc(100vh - 80px);
}

.inner-banner {
    height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.50);
}


/*Swiper CSS*/

.swiper-banner {
    width: 100%;
    height: 100%;
    color: #fff;
}

.swiper-banner .swiper-slide {
    position: relative;
    background-position: center center;
    background-size: cover;
}

.swiper-banner .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.50);
}

.slider-buttons li{
  display: inline-block;
  margin-right: 15px;
}
.slider-buttons li:last-child{
  margin-right: 0px;
}


/*Swiper Pagination CSS*/
.swiper-pagination-bullet {
    height: 20px;
    width: 20px;
    border: 2px solid #fff;
    background: none;
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.swiper-pagination-custom{
  display: none;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-caption {
    width: 55%;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}

#swiper-pagination{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}


/*Booking Bar*/

.booking-bar {
    float: left;
    width: 100%;
    padding: 85px 0;
    text-align: center;
    color: #fff;
    background: #3c3c3c;
    font-family: 'Playfair Display', serif;
    font-size: 1em;
}

.booking-bar h3 {
    color: #cfaa42;
}

.booking-form .select-label {
    font-weight: normal;
    display: block;
    margin-top: 8px;
}

.booking-form .form-group {
    margin-right: 15px;
    vertical-align: top;
}

.booking-form .form-group:last-child {
    margin-right: 0px;
}

.booking-form .form-control {
    height: auto;
    border: 1px solid #fff;
    background: none;
    border-radius: 0;
    color: #fff;
    font-size: 1.25em;

}

.booking-form .form-control:focus,
.booking-form .form-control.focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.booking-form input.form-control {
    padding: 9px 10px 13px 10px
}

.booking-form select.form-control {
    padding: 0px 30px 8px 30px;
    height: 52px;
    font-size: 1.875em;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.booking-form select.form-control::-ms-expand {
    display: none;
}

.booking-form .btn-custom {
    font-family: 'Playfair Display', serif;
    border-radius: 0;
    background: none;
    color: #cfaa42;
    text-transform: uppercase;
    border: 1px solid #cfaa42;
    padding: 11px 80px;
    font-size: 1.250em;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.booking-form .form-group {
    position: relative;
}

.booking-form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.booking-form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.booking-form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.booking-form input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

.booking-form .form-group .form-icon {
    position: absolute;
    right: 4px;
    top: 0px;
}

.booking-form .btn-custom.focus,
.booking-form .btn-custom:focus,
.booking-form .btn-custom:hover {
    background: #cfaa42;
    color: #fff;
    border-color: #cfaa42;
}

.booking-form select option {
    color: #3c3c3c;
    font-size: 20px;
}


/*Footer CSS*/

footer {
    background: #f8f8f8;
    padding: 100px 30px;
}

footer h5 {
    color: #cfaa42;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li a {
    font-size: 1em;
    line-height: 1.4em;
    color: #636364;
}

footer ul.menu li a:hover{
  color: #cfaa42;
}

footer p {
    font-size: 1em;
    line-height: 1.4em;
    color: #636364;
}

.social-media h5{
  display: inline-block;
}

.social-media ul {
    vertical-align: middle;
    display: inline-block;
}

.social-media ul li {
    display: inline-block;
    margin-left: 5px;
}
.social-media [class*='menu-']{
  display: inline-block;
}
.social-media ul.menu{
  margin-left: 5px;
}
.social-media ul.menu li {
    color: #cfaa42;
    font-size: 1.8em;
    position: relative;
    line-height: 1.4em;
}
.social-media ul.menu li a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}


.social-media .textwidget img {
    width: auto;
	height: 70px;
    margin: 5px 0 5px 5px;
    vertical-align: top;
}
.social-media .textwidget:last-of-type img {
	height: 40px;
}







.white-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.50);
}

.white-box {
    padding: 15px;
    -webkit-box-shadow: 0px 0px 30px #e5e5e5;
    box-shadow: 0px 0px 30px #e5e5e5;
}

.d-flex {
    display: -ms-Flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.full-width-banner {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 180px 0px;
    color: #fff;
    position: relative;
}

.full-width-banner.weddings {
    background: url('../img/wedding-reception-banner.jpg');
}

.full-width-banner .btn-custom {
    color: #fff;
}

.content h1 {
    color: #cfaa42;
}

.content h3, .content p{
  margin-bottom: 20px;
}

.content a {
    position: relative;
    color: #cfaa42;
}

/*.content a::after {
    font-family: "Ionicons";
    content: "\f3d3";
    position: absolute;
    right: -12px;
    top: 2px;
}*/

.full-width-banner h1 {
    color: inherit;
}

.full-width-banner h3 {
  margin-bottom: 30px;
    color: inherit;
}

.full-width-banner p {
    color: inherit;
}


/*two-column-flex*/

.d-flex-two-column {
    display: -ms-Flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.left-col,
.right-col {
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 10px;
    position: relative;
    display: -ms-Flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.flex-item {
-webkit-align-self: center;
    align-self: center;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding: 50px 0px;
}
.flex-item h3{
  margin-top: 0;
  margin-bottom: 0;
}

.left-col.solid-bg .d-flex-two-column,
.right-col.solid-bg .d-flex-two-column {
    min-height: auto;
}

.left-col.solid-bg .flex-item,
.right-col.solid-bg .flex-item {
    text-align: left;
    width: 100%;
    -ms-flex-item-align: self-start;
    align-self: self-start;
     -webkit-box-orient: top;
    padding: 70px 0;
}

.right-col.solid-bg p,
.left-col.solid-bg p {
    color: inherit;
}

.left-col.solid-bg a {
    position: relative;
    color: #cfaa42;
}

.right-col.solid-bg a {
    position: relative;
    color: #3c3c3c;
}

.right-col.solid-bg a::after,
.left-col.solid-bg a::after {
    font-family: "Ionicons";
    content: "\f3d3";
    position: absolute;
    right: -12px;
    top: 1px;
}

.solid-bg h3,
.solid-bg p,
.solid-bg a {
    line-height: 24px;
    margin-bottom: 0px;
}

.solid-bg a {
    display: inline-block;
    margin-bottom: 40px;
}
.solid-bg h1{
    margin-bottom: 30px;
}


/*
.left-col.bg {
    background: url('../img/weddings-background.jpg');
}

.right-col.bg {
    background: url('../img/big-day-background.jpg');
}*/


/*Newsletter CSS*/

.newsletter input {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border-color: #e7e7e7;
}

.newsletter input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #636364;
}

.newsletter input::-moz-placeholder {
    /* Firefox 19+ */
    color: #636364;
}

.newsletter input:-ms-input-placeholder {
    /* IE 10+ */
    color: #636364;
}

.newsletter input:-moz-placeholder {
    /* Firefox 18- */
    color: #636364;
}

.newsletter .btn-custom {
    font-family: 'Open Sans', sans-serif;
    border-radius: 0;
    background: #3c3c3c;
    color: #fff;
    text-transform: none;
    border: 1px solid #3c3c3c;
    padding: 5px 30px;
    font-size: 1em;
    -webkit-transition: all .3s;
    transition: all .3s;
}


/*
.left-col.bg {
    background: url('../img/weddings-background.jpg');
}
*/

.right-col.bg {
    /*    background: url('../img/big-day-background.jpg');*/
    color: #3c3c3b;
}

.left-col.solid-bg {
    background: #3c3c3b;
}

.right-col.solid-bg {
    background: #cfaa42;
}

.right-col.bg .btn-custom {
    color: inherit;
    text-transform: uppercase;
    border: 1px solid #3c3c3b;
}

.right-col.bg .btn-custom.focus,
.right-col.bg .btn-custom:focus,
.right-col.bg .btn-custom:hover {
    background: #cfaa42;
    color: #fff;
    border-color: #cfaa42;
}

.left-col.bg:after {
    content: "";
    border: 1px solid #fff;
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

.right-col.bg:after {
    content: "";
    border: 1px solid #000;
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 16px;
    right: 16px;
}


/*two-column-flex*/

.newsletter .form-control:focus,
.newsletter .form-control.focus {
  -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #636364;
}


/*Contact Form CSS*/

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form label {
  font-size: 1.125em;
    font-weight: normal;
    font-family: 'Playfair Display', serif;
      margin-bottom: 10px;
}

.contact-form .form-control {
    color: #fff;
    background: #555555;
    border: 1px solid #555555;
    border-radius: 0;
    -moz-box-shadow: none;
      -webkit-box-shadow: none;
      box-shadow: none;
    resize: vertical;
    /* user can resize vertically, but width is fixed */
}

.contact-form .form-group .btn-custom {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125em;
    text-transform: capitalize;
}

.contact-form .form-control.focus,
.contact-form .form-control:focus {
    border: 1px solid #cfaa42;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.contact-form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.contact-form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.contact-form input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}


/*NuMap CSS*/

.numap {
    height: 100%;
    width: 100%
}


/*Breadcrumbs CSS*/

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: -15px;
    margin-bottom: 30px;
}

.breadcrumbs a{
  display: inline-block;
  margin-right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25em;
  color: #3c3c3c;
  position: relative;
}
.breadcrumbs span.breadcrumb_last{
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25em;
  color: #cfaa42;
}
.breadcrumbs a::after {
  position: absolute;
  right: -16px;
top: 2px;
}

/*Default Page Styling*/

.default h3,
.default p {
    margin-top: 0;
    margin-bottom: 30px;
}
.default h1{
  padding-bottom: 15px;
}

.two-col-content h1{
  padding-bottom: 20px;
}


/*Room CSS*/

.rooms .bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rooms .text {
    padding: 50px 15px;
    background: #eaeaea;
}

.rooms .text h1 {
    color: #cfaa42;
}

.rooms .text h3{
  color: #3c3c3b;
  margin-bottom: 20px;
}
.rooms .text h3:last-of-type {
    color: #cfaa42;
}

.rooms .text .flex-item {
    text-align: left;
    width: 70%;
}

.rooms .text::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 45px solid transparent;
    border-right: 30px solid #eaeaea;
    border-bottom: 45px solid transparent;
    border-left: 0px;
    clear: both;
    /* z-index: 3; */
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.room-link:nth-of-type(even) .rooms{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.room-link:nth-of-type(even) .rooms .text::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 45px solid transparent;
    border-left: 30px solid #eaeaea;
    border-bottom: 45px solid transparent;
    border-right: 0px;
    clear: both;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.room-link{
  display: block;
  width: 100%;
}


/*Gallery*/

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background: url('../img/next-arrow.png') no-repeat !important;
    width: 40px;
    height: 65px;
    margin-top: -32px;
    background-size: 40px 65px;
    right: 20px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background: url('../img/prev-arrow.png') no-repeat !important;
    width: 40px;
    height: 65px;
    margin-top: -32px;
    background-size: 40px 65px;
    left: 20px;
}

.gallery-banner {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100vh - 335px);
    overflow: hidden;
}

.slider {
    position: relative;
    background: #484848;
    height: auto;
    padding: 30px 100px;
    width: 100%;
    height: 200px;
}
.gallery-container.swiper-container{
  position: unset;
}

.loadimage {
    display: block;
    background: none;
    padding: 5px;
    border: 2px solid transparent;
}

.loadimage.active {
    border: 2px solid #cfaa42;
}

.img-thumbnail{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 126px;
display: block;
border: none;
border-radius: 0;
}


/* ------------------------------------------------------ Sitemap CSS -------------------------------------------------------------------------------- */

.sitemap{
  padding: 100px 0;
  text-align: center;
}
.sitemap h1{
  color: #cfaa42;
font-family: 'Playfair Display', serif;
}
.sitemap>ul{
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.sitemap>ul>li{
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  vertical-align: top;
  margin-right: 40px;
  margin-top: 20px;
  text-align: left;
}
.sitemap>ul>li>a{
    color: #cfaa42;
  display: block;
  margin-bottom: 5px;
}

.sitemap>ul>li ul{
  padding-left: 10px;
  list-style: none;
}
.sitemap>ul>li ul>li::before{
    content: '';
    position: absolute;
    display: block;
    border-top: 1px solid #7e8377;
    top: 9px;
    left: -7px;
    width: 8px;
    height: 0;
}
.sitemap>ul>li ul>li::after{
    content: '';
    position: absolute;
    display: block;
    border-left: 1px solid #7e8377;
    height: 100%;
    width: 0px;
    top: 0px;
    left: -8px;
}
.sitemap>ul>li ul>li:last-child::after{
  height: 10px;
}
.sitemap>ul>li>ul>li{
  position: relative;
  font-weight: normal;
  font-size: 14px;
  padding-left: 5px;
  line-height: 26px;
}


/*Contact form 7 CSS Edit*/
div.wpcf7-response-output {
    margin: 0 !important;
    padding: 1px !important;
    font-size: .8em !important;
}
div.wpcf7-mail-sent-ng, div.wpcf7-mail-sent-ok{
  color: #cfaa42 !important;
  border: none !important;
}
div.wpcf7-validation-errors{
  border: none !important;
}
span.wpcf7-not-valid-tip {
    color: #bc0000 !important;
    font-size: .8em !important;
    font-weight: normal !important;
    display: block !important;
    margin-top: 3px !important;
}
/*datepicker restyling*/

.xdsoft_datetimepicker  .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker  .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker  .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current{
    background: #cfaa42;
    box-shadow: #cfaa42 0 1px 3px 0 inset;
}
.xdsoft_datetimepicker  .xdsoft_calendar td:hover, .xdsoft_datetimepicker  .xdsoft_timepicker .xdsoft_time_box >div >div:hover{
  background: #cfaa42 !important;
  box-shadow: none !important;
}

/*iFrame CSS*/
.bookingiframe{
  display: block;
  width: 100%;
  height: 3000px;
}

/*Blog Post CSS*/
.author{
  float: left;
  width: 100%;
  border-bottom: 1px solid #cfaa42;
  margin-bottom: 15px;
    padding-bottom: 10px;
    color: #868686;
    font-size: 0.875em;
}
.blogpost{
  padding: 50px 0;
  background-color: #fff;
  text-align: left;
}
.blogpost p{
  line-height: 1.50em;
}
.blog p{
  margin-bottom: 15px;
}
.blog{
  margin-bottom: 30px;
}
.blog h5{
color: #cfaa42;
}
.blog:last-of-type{
  margin-bottom: 0;
}

.button {
	font-family: 'Playfair Display', serif;
	border-radius: 0;
	background: none;
	color: #ffffff;
	text-transform: uppercase;
	border: 1px solid #ffffff;
	padding: 7px 21px;
	font-size: 1.250em;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.button:hover {
	font-family: 'Playfair Display', serif;
	border-radius: 0;
	background: #cfaa42;
	color: #ffffff;
	text-transform: uppercase;
	border: 1px solid #cfaa42;
	padding: 7px 21px;
	font-size: 1.250em;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.room-link a.button,
.content a.button{
	border: 1px solid #636363;
	color: #cfaa42;
	margin-top:10px;
	display: inline-block;
}
.room-link a.button:hover,
.content a.button:hover {
	color: #ffffff;
	border: 1px solid #cfaa42;
}
.button::after { display: none; }


.book-button .btn-book {
	min-width: 180px;
}
.book-button:hover .btn-book {
	background: #cfaa42;
	color: #fff;
	border-color: #cfaa42;
}
.booknownavigation {
	display: none;
	position: absolute;
	top: 63px;
	right: 15px;
	padding: 5px;
	background: #cfaa42;
	width: 180px;
}
.booknownavigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.booknownavigation ul li { }
.booknownavigation ul li + li {
	margin-top: 5px;
}
.booknownavigation ul li a {
    display: block;
    font-family: 'Playfair Display', serif;
    border-radius: 0;
    background: none;
    color: #ffffff;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    padding: 10px 21px;
    font-size: 1em;
    -webkit-transition: all .3s;
    transition: all .3s;
	text-align: center;
}
.booknownavigation ul li a:focus,
.booknownavigation ul li a:hover {
    background: #ffffff;
    color: #cfaa42;
    border-color: #ffffff;
}
@media only screen and (max-width: 767px){
	.book-button .btn-book { min-width: 1px; }
	.booknownavigation { top: 50px;	}
}


.ui-widget-header { 
    border: 1px solid #cfaa42 !important;
    background: #cfaa42 !important;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    border: 1px solid #cfaa42 !important;
    background: #cfaa42 !important;
    font-weight: normal;
    color: #fff !important;
} 



/* ------------------------------------------------------ Sitemap CSS -------------------------------------------------------------------------------- */

.wsp-container{
  padding: 100px 0;
  text-align: center;
}
.wsp-container>ul{
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.wsp-container>ul>li{
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  vertical-align: top;
  margin-right: 40px;
  margin-top: 20px;
  text-align: left;
}
.wsp-container>ul>li>a{
  display: block;
  margin-bottom: 5px;
}

.wsp-container>ul>li ul{
  padding-left: 10px;
  list-style: none;
}
.wsp-container>ul>li ul>li::before{
    content: '';
    position: absolute;
    display: block;
    border-top: 1px solid #7e8377;
    top: 9px;
    left: -7px;
    width: 8px;
    height: 0;
}
.wsp-container>ul>li ul>li::after{
    content: '';
    position: absolute;
    display: block;
    border-left: 1px solid #7e8377;
    height: 100%;
    width: 0px;
    top: 0px;
    left: -8px;
}
.wsp-container>ul>li ul>li:last-child::after{
  height: 10px;
}
.wsp-container>ul>li>ul>li{
  position: relative;
  font-weight: normal;
  font-size: 14px;
  padding-left: 5px;
  line-height: 26px;
}


@media only screen and (max-width: 767px){
  .wsp-container{
    padding: 0;
    text-align: left;
    padding-left: 15px;
  }
  .wsp-container>ul>li{
    display:block;
    margin-top: 10px;
  }
  .wsp-container>ul>li ul{
    padding-left: 20px;
    list-style: circle;
  }
  .wsp-container>ul>li ul>li::after, .wsp-container>ul>li ul>li::before{
    content: none;
  }
  .wsp-container>ul>li ul>li{
    padding-left: 0px;
  }

}