/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
--------------------------------------------------
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

* {
    box-sizing: border-box
}


/* Grid
--------------------------------------------------*/
.container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 10px; /* was 20px */ }
.column,
.columns {
  width: 100%;
  float: left;}
  
  .never-full > .one.column,
  .never-full > .one.columns                    { width: 4.66666666667%; }
  .never-full > .two.columns                    { width: 13.3333333333%; }
  .never-full > .three.columns                  { width: 22%;            }
  .never-full > .four.columns                   { width: 30.6666666667%; }
  .never-full > .five.columns                   { width: 39.3333333333%; }
  .never-full > .six.columns                    { width: 50%;            }
  .never-full > .seven.columns                  { width: 56.6666666667%; }
  .never-full > .eight.columns                  { width: 65.3333333333%; }
  .never-full > .nine.columns                   { width: 74.0%;          }
  .never-full > .ten.columns                    { width: 82.6666666667%; }
  .never-full > .eleven.columns                 { width: 91.3333333333%; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 92%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 768px) {
  .container {
    width: 95%; }
  .column, .columns, .flipped > .column:first-child, .flipped > .columns:first-child {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child, .flipped > .columns:last-child, .flipped > .column:last-child, .four.columns:nth-of-type(3n+1) {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
--------------------------------------------------*/
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 11pt;
  font-size: 1.5em;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  color:#587470; }


/* Typography
--------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 4.0rem; }
  h2 { font-size: 3.0rem; }
  h3 { font-size: 2.6rem; }
  h4 { font-size: 2.0rem; }
  h5 { font-size: 1.6rem; }
  h6 { font-size: 1.2rem; }
}

p {
  margin-top: 0; }


/* Links
--------------------------------------------------*/
a {
  color: #468194; }
a:hover {
  color: #0FA0CE; }


/* Buttons
--------------------------------------------------*/
.button,
button,
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #bbb;
  cursor: pointer;}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #587571;
  background-color: #FFF;
  border-color: #FFF; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #587571;
  background-color: #F2F2F2;
  border-color: #F2F2F2; }


/* Forms
--------------------------------------------------*/
input[type="email"],
input[type="date"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="date"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }
form.amp-form-submit-success .hide-inputs   {
  display: none;
}
form.amp-form-submit-success > .forminput {
            display: none
        }


/* Lists
--------------------------------------------------*/
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
--------------------------------------------------*/
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
--------------------------------------------------*/
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }


/* Spacing
--------------------------------------------------*/
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 10px; }


/* Utilities
--------------------------------------------------*/
.u-full-width {
  width: 100%; }
.u-max-full-width {
  max-width: 100%;}
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
--------------------------------------------------*/
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
--------------------------------------------------*/

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf, .property-tile .detail-area:after, .property-list .detail-area:after, .fancyprice:after {
  content: "";
  display: table;
  clear: both; }

/* Custom CSS 
--------------------------------------------------*/
@-webkit-keyframes b{0%{opacity:0}to{opacity:1}}@keyframes b{0%{opacity:0}to{opacity:1}}
@-webkit-keyframes g{0%{opacity:0;-webkit-transform:translate3d(5vmax,2vmax,0) scale(1.1);transform:translate3d(5vmax,2vmax,0) scale(1.1)}5%{opacity:1}33%{opacity:1}38%{opacity:0;-webkit-transform:translate3d(0,-2vmax,0) scale(1);transform:translate3d(0,-2vmax,0) scale(1)}}
@keyframes g{0%{opacity:0;-webkit-transform:translate3d(5vmax,2vmax,0) scale(1.1);transform:translate3d(5vmax,2vmax,0) scale(1.1)}5%{opacity:1}33%{opacity:1}38%{opacity:0;-webkit-transform:translate3d(0,-2vmax,0) scale(1);transform:translate3d(0,-2vmax,0) scale(1)}}

@-webkit-keyframes h{0%{opacity:0;-webkit-transform:translate3d(-2vmax,0,0) scale(1);transform:translate3d(-2vmax,0,0) scale(1)}5%{opacity:1}33%{opacity:1}38%{opacity:0;-webkit-transform:translate3d(2vmax,-2vmax,0) scale(1.1);transform:translate3d(2vmax,-2vmax,0) scale(1.1)}}
@keyframes h{0%{opacity:0;-webkit-transform:translate3d(-2vmax,0,0) scale(1);transform:translate3d(-2vmax,0,0) scale(1)}5%{opacity:1}33%{opacity:1}38%{opacity:0;-webkit-transform:translate3d(2vmax,-2vmax,0) scale(1.1);transform:translate3d(2vmax,-2vmax,0) scale(1.1)}}

@-webkit-keyframes i{0%{opacity:0;-webkit-transform:translate3d(0,2vmax,0) scale(1);transform:translate3d(0,2vmax,0) scale(1)}5%{opacity:1}33%{opacity:1}38%{opacity:0;-webkit-transform:translateY(-2vmax) scale(1.1);transform:translateY(-2vmax) scale(1.1)}}
@keyframes i{0%{opacity:0;-webkit-transform:translate3d(0,2vmax,0) scale(1);transform:translate3d(0,2vmax,0) scale(1)}5%{opacity:1}33%{opacity:1}38%{opacity:0;-webkit-transform:translateY(-2vmax) scale(1.1);transform:translateY(-2vmax) scale(1.1)}}

body {
    background:#c5cec9;
}
.background-image {
    -webkit-animation: b .8s ease-out both;
    animation: b .8s ease-out both;
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}
 .background-image amp-img {
    opacity: 0;
    position: absolute;
    top: -5vmax;
    right: -5vmax;
    bottom: -5vmax;
    left: -5vmax;
}
.background-image amp-img:first-child {
    -webkit-animation: 18s g linear infinite;
    animation: 18s g linear infinite;
}
.background-image amp-img:nth-child(2) {
    -webkit-animation: 18s h linear 6s infinite;
    animation: 18s h linear 6s infinite;
}
.background-image amp-img:nth-child(3) {
    -webkit-animation: 18s i linear 12s infinite;
    animation: 18s i linear 12s infinite;
}
.background-image amp-img img {
    object-fit: cover;
}
 
#cottage-carousel amp-img {
	cursor:pointer;
}

.menu {
    position: fixed;
    z-index: 999;
    background: rgba(53, 53, 53, 0.7);
    width: 100vw;
    color: #FFF;
    height: 60px;
    top: 0;
    left: 0;
}

.menu ul {
    display: none;
}

h5.side-title {
    margin: 0;
    padding: 1rem;
    font-size: 2.8rem;
}

#side-navigation-ul {
    width: 50vw;
    list-style-type: none;
    padding: 0 2em 2em 2em;
}

#side-navigation-ul > li > a {
    text-decoration: none;
    color: #FFF;
    font-size: 2rem;
    text-transform: uppercase;
}
.search {color: #FFF;display:none}
.menu-icon {
    text-transform: uppercase;
    font-size: 1.5em;
    position: absolute;
    top: 0;
    right: 2rem;
}

.menu-icon p {
    margin: 0;
    line-height: 60px;
}

#logo {
    position: absolute;
    height: 60px;
    width: 230px;
    background: url(css/hfhp.png) no-repeat center center;
    background-size: contain;
    left: 1.5em;
    z-index: 3;
    top: 70px;
}
 
#topphoto {
    height: 80vh;
    overflow: hidden;
    position: relative;
}
#topphoto.short {
    height: 40vh;
}
#topphoto.short amp-img {
    width: 100%;
    height: 100%;
}

#topphoto.short img {
    object-fit:cover; 
    object-position: 50% 40%;
    height: 100%; 
	width: 100%;
}
#goodtogo {	position: absolute;top: 55vh;   z-index: 101;}

.search:after {
    clear: both;
    content: '';
    display: table;
}
.search .button-primary {
    margin:0;
}
.grey {
    background: #FFF;
}
.text-grey, #footer, #footer a {
    color: #f9f2eb;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.bluegrey {
    /*background: #d8d9d9;*/
    background: #FFF
}
.green {
    background: #587571;
}
.padding-small, .padding-medium {
    padding: 25px;
}

.push-up {
    position: relative;
    top: -20px;
}

.flipped .column > div:first-child, .flipped .columns > div:first-child {
    margin-bottom: 25px;
}
.no-margins > .column, .no-margins > .columns, .quote h5, .quote p, #footer-bar p, #footer p, .no-margin, .share p, .cottage-title h1, .cottage-title h4, .cstm-btn:last-of-type, .flexform input {
    margin: 0;
}
.offer-row .column, .offer-row .columns {
    height: 225px;
}
.offer-row div {
    height: 100%;
}
.offer-row div.quote {
    height: auto;
}
.place h4 {
    margin: 0;
    line-height: 225px;
    text-align: center;
}
#footer {
    background: #424f48;
    margin-top: 25px;
}
#footer .two.columns {
    word-wrap: break-word;
}
#footer h3 {
    margin: 5px 0;
}
#footer a {
    text-decoration: none;
}
#footer li {
    list-style-type: none
}
#footer-bar {
    background: #1e2222;
}
.flipped .column > div.hasskew, .flipped .columns > div.hasskew {
    margin-bottom: 60px
}
.skew {
    /*-webkit-transform: skewY(5deg);
    -moz-transform: skewY(5deg);
    -ms-transform: skewY(5deg);
    -o-transform: skewY(5deg);
    transform: skewY(5deg);*/
    height: 50px;
    width: calc(100% + 50px);
    position: relative;
    left: -25px;
    bottom: -50px;
    z-index: -1
}

.cover {
    width: 100%;
    height: 100%;
}
.cover > img {
    object-fit: cover;
}
.random-home {
    position: relative;
}
.random-home h5 {
    position: absolute;
    bottom: 0;
    margin: 0;
    color: #FFF;
    background: rgba(43, 50, 46, .8);
    width: 100%;
    text-align: center;
    padding: 4px 0;
    font-size: 24px;
}

.home-promo h5 {
    margin: 0;
    background: #587571;
    color: #FFF;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    position: relative;
    z-index: 1;
    padding: 0 40px;
    width: calc(100% + 50px);
    left: -35px;
}

.home-promo h5:after {
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    right: -24px;
    border-top: 45px solid #587571;
    border-right: 24px solid transparent;
}
.home-promo p, .front-offers a {
    color: #222;
    text-decoration: none
}

.arrival-form p {
    font-size: 18px;
    margin: 0
}
.arrival-form input[type="number"] {
    display: block;
    color: #222
}
.arrival-form select {
    width: 100%;
    color: #222
}

.home-promo p:first-of-type {
    margin-top: 10px;
}

.home-promo p:last-of-type {
    margin-bottom: 0;
}

.home-promo.vertical h5 {
    writing-mode: tb;
    width: 45px;
    line-height: 45px;
    padding: 40px 0;
    left: unset;
    float: right;
    height: auto
}

.home-promo.vertical h5:after {
    right: unset;
    border-top: 24px solid #587571;
    border-left: 45px solid transparent;
    bottom: -24px;
    border-right: none;
}

.home-custom-margins .row.home-promo, .property-list, .property-tile {
    margin-bottom: 25px
}

a {
    text-decoration: none;
}

.property-tile .title-area {
    background: #d1dac5;
    color: #587470;
    padding: 8px 20px;
    position: relative;
}
.property-tile .title-area h4, .property-tile .title-area h5 {
    margin: 0;
}
.property-tile .title-area h5 {
    font-size: 18px;
}
.property-tile .detail-area {
    background: #FFF;
}
.property-tile .detail-area {
    width: 96%;
    margin: 0 auto;
}
.detail-area div {
    width: 20%;
    float: left;
    text-align: center;
}
.detail-area p {
    color: #898885;
}
.detail-area p:first-child {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size:1rem;
}
.big, .detail-area p:last-child {
    margin: 0;
	font-size:4rem;
	line-height: 1em;
    font-weight: bold;
	 color: #aaaaaa;
}
.big  {
    text-align:center
}
.property-tile:hover .detail-area p:last-child  {
    color: #587470;
   }
.detailsbox h1 {
    color: #587470;
}
.detailsbox h1 {
    text-align: center
}
.detailsbox .four h4, .detailsbox .six h4 {
    text-align: center;
}
.center-icon {
    margin: 0 auto;
    position: relative;
    width: 72px;
}
.detailsbox h4 {
    color: #898885;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    line-height: 48px;
}
.detailsbox > .row:first-of-type > div {
    margin-left: 0
}
.property-tile img {
    object-fit: cover
}
.property-list {
    background: #FFF;
    border-bottom: 6px solid #587571;
	overflow: hidden;
}
.property-list .title-area, .property-list .price-area {
    padding: 15px 22px;
}
.property-list .title-area > * {
    margin: 0
}
.property-list .price-area p {
    margin: 0 10px;
    float: left
}
.cstm-btn {
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
    text-decoration: none;
    color: #FFF;
    background: #6b7f19;
    -webkit-box-shadow: 0px 4px 2px -2px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 4px 2px -2px rgba(0,0,0,0.7);
    box-shadow: 0px 4px 2px -2px rgba(0,0,0,0.7);
    text-transform: uppercase;
    margin: 0 0 10px 1em ;
    border: 0
}
.cstm-btn.red {
    background: #e3240c;
}
.property-list .title-area {
    color: #587470
}
.three.columns.filter-col  {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.three.columns.filter-col .GTG  {
    width: 100%;
	max-width: 180px;
	margin: 2em 0;
}
	
.property-list .title-area h4 {
    font-weight: bold
}
.home-loader {
    background: #FFF;
    padding: 15px
}
#topphoto > amp-img {
    position: absolute;
}
.cottage-title {
    position: absolute;
    top: 85px;
    right: 0;
    background: #424f48;
    color: #FFF;
    width: auto;
    max-width: 85vw;
    text-align: right;
    padding: 8px 15px 8px 8px;
}
.cottage .columns {
    margin-bottom: 15px;
    padding: 15px;
    background: #FFF;
    position: relative;
}

.form50 {
    width: 50%;
    float: left;
    padding: 0 10px;
    position: relative;
}
.formResult {
    width: 100%;
    padding:1rem;
    position: relative;
}
form.flexform {
    display: flex;
    flex-wrap: wrap;
}
.flexform .cstm-btn.red {
    position: absolute;
    bottom: 2px;
    right: 10px;
}
.flexform input[type="number"], .flexform input[type="date"] {
    width: 100%;
}
.productline {
	border-bottom: 1px solid #e1e1e1;
    padding: 0.6rem;
	max-width: 600px;
}
.productline .int {
	    width: 25%;
       float: right;
	   text-align: right;
}
.cstm-btn.map-btn {
    margin-bottom: 10px
}
.cottage .columns h4 {
    margin: 0 0 10px 0;
}
.cottage p {
    font-size: 14px
}
.fancyprice p:first-child {
    margin: 0;
    font-size: 1.2em;
    float: none;
}
.fancyprice .big {
    text-align: left;
    float: left;
    padding: 0 0.5em;
}

.widthlimit {
    max-width: 600px;
}
label {
    font-weight: normal;
    font-size: 14px;
}
body.lightbody {
    background:#dadadb;
}
.toplogo {
    margin-top: 8.5px;
}
#logo {
    display: none;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.eight.columns .three.columns:nth-child(4n+5) {
    margin-left: 0;
    clear: both;
    background-color: white;
}
.cstm-btn:hover {
    -webkit-box-shadow: 0px 4px 2px -2px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 4px 2px -2px rgba(0,0,0,0.7);
    box-shadow: 0px 4px 2px -2px rgba(0,0,0,0.5);
    color: #FFF;
}
#cottage-carousel {
    padding: 4px 10px;
    margin-top: -1px;
    background: #646369;
}
#topphoto amp-carousel amp-img {
    height: calc(100% + 32px);
}
.cottage .features h3 {
    margin-bottom: 5px;
}
.right {
    float: right;
}
.rightnavblock {
    display: none;
}
.tile-slide .amp-carousel-slide img {
    object-fit: cover;
}
.calendar {
    padding: 10px;
    background: #F2F2F2
}
.calendar h3 {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    color: #555;
    margin: 0;
}
.calendar th {
    color: #898885;
    font-family: 'Oswald', sans-serif;
    font-size: 23px;
    text-align: center;
}
.hometextlong h1 {
    font-size: 28px;
    margin-bottom: 5px
}
.hometextlong a {
    color: #000
}
.white {
    background: #FFF;
}
amp-sidebar {
    background-color: rgba(53, 53, 53, 0.95);
    color: #FFF
}
.pushup-newsbox {
    margin-top: -20px
}
.reviewscroll p, .review p {clear: both; margin-top: 2rem; padding: 2rem; border-top: 1px solid #ccc; background-color: #fff7c6; text-align: right; color: #4c4b4b;}
.reviewscroll {height: 400px; padding-top: 2rem; width: 100%;  overflow-y: scroll;
  overflow-x: hidden;
  white-space: wrap;}
 /* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"],.contact-form textarea, .contact-form select, .contact-form input[type="number"],.contact-form input[type="date"] {
    width: 100%
}
#topphoto .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: -ms-linear-gradient(top,rgba(255,255,255,0) 60%,rgba(0,0,0,.7) 100%);
    background-image: -moz-linear-gradient(top,rgba(255,255,255,0) 60%,rgba(0,0,0,.7) 100%);
    background-image: -o-linear-gradient(top,rgba(255,255,255,0) 60%,rgba(0,0,0,.7) 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(60,rgba(255,255,255,0)),color-stop(100,rgba(0,0,0,.7)));
    background-image: -webkit-linear-gradient(top,rgba(255,255,255,0) 60%,rgba(0,0,0,.7) 100%);
    background-image: linear-gradient(to bottom,rgba(255,255,255,0) 60%,rgba(0,0,0,.7) 100%);
    z-index: 0;
}
.property-tile amp-carousel {
    width: 100%;
    margin-bottom: -20px;
}
.upper-titles {
    position: absolute;
    left: 15vw;
    bottom: 40px;
    color: #FFF;
    z-index: 1;
    text-align: right;
    padding: 0 6px;
}
.upper-titles h1 {
    margin-bottom: 5px;
}
.container.tall {
    height: 100%
}
.upper-titles a {
    color: #FFF;
    text-decoration: none
}
.offer-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.offer-row .quote {
    background: #424f48;
}
.offer-row:nth-child(3) .place {
    order: 2;
    margin-left: 4%
}
.offer-row:nth-child(3) .quote {
    margin-left: 0
}
.fixed-height-box {
    height: 350px;
}
.quote p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 120px;
}
.ticksvg{fill:#57725f;}
.tableCol h3 {
    text-align: center
}
.features .amp-carousel-button {
    top: 18px
}
.features .amp-carousel-button-prev {
    left: 0
}
.features .amp-carousel-button-next {
    right: 0
}
.tableCol table, .lightbox-inner table {
    width: 100%
}
.tableCol td {
    text-align: center;
    padding: 12px 0;
}
.tableCol a {
    text-decoration: none;
    color: #222222
}
.bkd {
    background-color: #eae9e8;
    font-weight: 100;
	text-decoration: line-through;
}
.weekend4 {
    background-color: #DEF3BA;
    font-weight: bold
}
.weekend1 {
    background-color: #D63D28;
    color: #193800
}
.sidescroll {
    overflow-x:auto
}.mobile-tip {display:none}
.box {
    font-weight: bold;
    background-color: #FFF
}
#dates-lb , #price-lb {
    background: rgba(0,0,0,0.75)
}
#dates-lb .lightbox-inner, #price-lb .lightbox-inner {
    background: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 100vh;
    width: 100vw;
    max-height: 680px;
    max-width: 1000px;
    padding: 20px;
    overflow-y:auto;
}
#price-lb .lightbox-inner tr td {
    min-width: 80px;
}
#price-lb .lightbox-inner tr td:first-of-type {
    min-width: 140px;
}
.li-close {
    width: 24px;
    height: 24px;
    cursor: pointer
}
.map-close {
    cursor: pointer;
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    width: 400px;
    max-width: 100vw;
}
.map-close h1 {
    text-align: center;
    padding: 10px;
    display: inline-block;
    width: 100%;
    background: #587571;
    color: #FFF;
    margin-bottom: 0
}
.menu .socialicon a {
    padding: 0;
    line-height: unset;
}
.warn {
    color: red;
    font-weight: bold;
}
.place a {
    text-decoration: none;
}
amp-date-picker input {
    height: 38px;
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: none;
    color: #222;
    max-width: 100%
}
.ardluck, .ardfun, .ardole {
    display: none
}
.homebox {
    position: relative;
    margin-top: 20px
}
.homeboxcon .row .homebox:nth-child(1),.homeboxcon .row .homebox:nth-child(2),.homeboxcon .row .homebox:nth-child(3) {
    margin-top: 0
}
.homebox img {
    object-fit: cover
}
.homebox h2, .homebox h5 {
    margin: 0;
    background: #587571;
    color: #FFF;
    font-weight: 600;
	font-size: 1.1em;
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 8px 10px;
    text-align: center;
}
.homeboxcon .row .homebox:nth-child(3n+4) {
    margin-left: 0;
}
.column.property-tile {
    position: relative;

}

.column.property-tile.new:after {
    content: 'NEW';
    position: absolute;
    color: #FFF;
    top: -15px;
    right: -15px;
    background: #d12626;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}
.CalendarMonth_caption {
    background-color: #424f48;
}
.cottage .four:first-child, .cottage .four.features {
    width: 100%;
}
.cottage .detailsbox.four {
    width: 100%;
    margin-Left: 0
}
.cottage .detailsbox .row:first-of-type, .cottage .detailsbox .row:nth-child(2), .cottage .detailsbox .fancyprice {
    width: 100%;
    float: left;
}
.cottage .detailsbox > div:last-of-type {
    clear: both
}
.detailsbox h4 {
    text-align: center
}
.property-tile:hover .title-area {
  color:#303e52
}
.whitetext{
    color: #FFF
}
.property-list amp-carousel {
    margin-bottom: -17px
}
/* Media Queries
--------------------------------------------------*/
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
@media (max-width: 500px) {
    .mobile-tip {display:block;}
}
@media (min-width: 700px) and (max-width: 999px) {
    .property-tiles .three.columns, .property-tiles div[role=list] > .column, .townlist .three.columns {
        width: 48%;
        margin-left: 0
    }
    .property-tiles .three.columns:nth-child(2n), .property-tiles div[role=list] > .column:nth-child(2n) {
        margin-left: 4%;
    }
    .property-tiles div[role=list] > .column:nth-child(2n+3), .townlist .three.columns:nth-child(2n+3) {
        clear: both;
    }
    .nine.columns.list-col {
        width: 100%;
        margin-left: 0;
    }
}
@media (min-width: 1000px) and (max-width: 1299px) {
    .property-tiles .three.columns, .townlist .three.columns {
        width: 30.66%;
    }
    .property-tiles .three.columns:nth-child(3n+4), .townlist .three.columns:nth-child(3n+4) {
        clear: both;
        margin-left: 0;
    }
    .property-list > amp-carousel  {
        width: 40%;
        float: left;
    }
    .property-list .title-area {
        width: 57%;
        float: left;
    }
    .property-list .detail-and-price {
        width: 100%;
        float: none;
		clear:both;
		padding: 1em;
    }
   .property-list .detail-and-price .detail-area, .property-list .detail-and-price .price-area {
        width: 50%;
        float: left;
    }
    .property-list .detail-and-price .detail-area  {
       padding-top:2em;
    }
    .property-list .title-area h5 {
        font-size: 19px;
    }
    .property-list .detail-and-price {
        padding: 15px
    }
    .property-list .price-area {
        padding: 0
    }
    .property-list .price-area h4 {
        margin: 25px 0 25px 0
    }
    .property-list .title-area {
        padding-right: 0
    }
    .three.columns.filter-col {
         width: 22%;
         position: unset;
     }
    .three.columns.filter-col input[type="text"], .three.columns.filter-col select {
    
		width: 100%;
	}
     .property-tiles .column{margin-left:0}
}
@media (max-width: 1599px) and (min-width: 1300px)  {
    .property-tiles .three.columns {
        width: 22%;
    }
    .property-tiles .three.columns:nth-child(4n+5), .townlist .three.columns:nth-child(4n+5) {
        clear: both;
        margin-left: 0;
    }
    .property-list > amp-carousel  {
        width: 40%;
        float: left;
    }
    .property-list .title-area {
        width: 56%;
        float: left;
    }
    .property-list .detail-and-price {
        width: 100%;
        float: none;
		clear:both;
		padding: 1em;
    }
   .property-list .detail-and-price .detail-area, .property-list .detail-and-price .price-area {
        width: 50%;
		max-width: 450px;
        float: left;
    }
     .property-list .detail-and-price .price-area {
        max-width: 400px;
    }
    .property-list .detail-and-price .detail-area  {
       padding-top:2em;
    }
    .property-list .title-area h5 {
        font-size: 19px;
    }
     .property-list .price-area {
        padding: 0
    }
    .property-list .price-area h4 {
        margin: 25px 0 25px 0
    }
    .property-list .title-area {
        padding-right: 0
    }
    .three.columns.filter-col {
         width: 22%;
         position: unset;
     }
     .property-tiles .column{margin-left:0}
}
@media (min-width: 1600px) {
	
    .property-tiles .three.columns {
        width: 18%;
        margin-left: 2%
    }
    .property-tiles .three.columns:first-of-type {
        margin-left: 0
    }
    .property-tiles .three.columns:nth-child(5n+6), .townlist .three.columns:nth-child(4n+5) {
        clear: both;
        margin-left: 0;
    }
    .property-list > amp-carousel,.property-list .title-area {
        width: 30%;
        float: left;
    }
    .property-list .detail-and-price {
        width: 40%;
        float: left;
    }
    .property-list .title-area h5 {
        font-size: 19px;
    }
    .property-list .detail-and-price {
        padding: 15px
    }
    .property-list .price-area {
        padding: 0
    }
    .property-list .price-area h4 {
        margin: 25px 0 25px 0
    }
    .property-list .title-area {
        padding-right: 0
    }
    .three.columns.filter-col {
         width: 22%;
         position: unset;
     }
     .property-tiles .column{margin-left:0}
	
}
    
@media (min-width: 750px) {
    .cottage .detailsbox .row:first-of-type, .cottage .detailsbox .row:nth-child(2), .cottage .detailsbox .fancyprice {
		width: 100%;
		float: left;
	}
	.cottage .detailsbox .fancyprice {
		float: right
	}
	.detailsbox h4 {
		text-align: left
	}
	.cottage .four:first-child, .cottage .four.features {
		width: 49%;
	}
	.cottage .detailsbox.four {
		display: flex;
	}
    .cottage .detailsbox.four .half {
		width: 50%;
	}
    .home-promo h5 {
        padding: 0 20px;
        width: calc(200% + 50px);
        left: -18px;
    }
    .search {
        display: block;
    }
    .home-custom-margins .four.columns {
        width: 34%;
        margin: 0;
    }
    .flipped .home-custom-margins .columns > div:first-child {
        margin-bottom: 0;
    }
    .home-custom-margins .eight.columns {
            width: 66%;
        margin-left: 0;
    }
    .hometextlong p {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .padding-small, .padding-medium {
        padding: 15px;
    }
    .home-promo h5 {
        height: 34px;
        line-height: 34px;
        font-size: 16px;
    }
    .home-promo h5:after {
        border-top: 34px solid #587571;
    }
    .home-promo.vertical h5 {
        width: 34px;
        line-height: 34px;
    }
    .home-promo.vertical h5:after {
        border-left: 34px solid transparent;
        bottom: -23px;
    }
    .home-custom-margins-item {
        width: calc(100% - 25px);
        margin: 0 25px 25px 0;
        height: 250px;
    }
    .no-home-custom-margins-item {
        height: 250px;
    }
    .flipped .home-custom-margins .columns > .row.home-promo:first-child {
        margin-bottom: 25px;
    }
    .home-custom-margins .row.home-promo > div, .home-custom-margins .row.home-promo amp-img {
        height: 100%;
    }
    .home-custom-margins .row.home-promo amp-img img {
        object-fit: cover;
    }
    .home-custom-margins .four.home-promo {
        height: 525px;
        overflow: hidden;
    }
    .absolute-img {
        position: relative;
        height: 100%;
    }
    .absolute-img amp-img {
        position: absolute;
        z-index: 0;
        width: 100%;
        left: 0px;
        bottom: 0;
        height: 50%;
    }
    .cottage-title {
        width: 40vw;
    }
    .cottage .four {
        margin-left: 2%;
        width: 32%;
    }
    .cottage .eight {
        width: 66%;
    }
    .cottage .four:first-child {
        margin-left: 0;
    }
    .detailsbox h4 {
        font-size: 20px;
        line-height: 24px;
    }
    .detailsbox h1 {
        font-size: 30px;
        line-height: 24px;
    }
    .fancyprice p:last-child {
        top: 0px;
    }
    .cottage .columns h4 {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .lightbox-inner .six.columns:nth-child(2n+1), .townrows .four.columns:nth-child(3n+4) {
        margin-left: 0;
    }
	.lightbox-inner .six.columns:nth-child(2n+1){
		clear:both;
	}
}
@media (min-width: 880px) {
    .cstm-btn.map-btn {
        position: absolute;
        top: 15px;
        right: 15px;
    }
}
@media (min-width: 960px) {
    .tableCol td {
        padding: 12px 15px;
    }
}
@media (max-width: 1023px) {
    .above1023 {
        display: block
    }
}
@media (min-width: 1024px) {
    .above1023 {
        display: none
    }
    .menu-icon {
        display: none;
    }
    #logo {
        display: block
    }
    .menu ul {
        display: block;
        padding-left: 6px;
        margin: 0;
    }
    .menu li {
        list-style-type: none;
        display: inline-block;
        margin: 0;
    }
    .menu a {
        text-decoration: none;
        color: inherit;
        line-height: 60px;
        padding: 0 6px;
        display: block;
        text-transform: uppercase;
    }
    .home-promo h5 {
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }

    .home-promo h5:after {
        border-top: 45px solid #587571;
    }
    .home-promo.vertical h5 {
        width: 45px;
        line-height: 45px;
    }

    .home-promo.vertical h5:after {
        border-left: 45px solid transparent;
        bottom: -24px;
    }
    .padding-small, .padding-medium {
        padding: 25px;
        
    }
    .fancyprice h1 {
        line-height: unset;
    }
    .fancyprice p:last-child {
        top: 14px;
    }
    .rightnavblock {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 0 35px 0 20px;
        background: rgba(38, 51, 51,0.9);
    }
    .rightnavblock a {
        text-transform: unset;
        float: left
    }
    .rightnavblock h1 {
        line-height: 60px;
        font-size: 18px;
        margin: 0 8px 0 0
    }
    .rightnavblock:before {
        content: '';
        height: 0;
        width: 0;
        position: absolute;
        left: -46px;
        top: 0;
        border-top: 60px solid rgba(38, 51, 51,0.9);
        border-left: 46px solid transparent;
    }
    .rightnavblock .socialicon {
        float: left;
        height: 30px;
        width: 30px;
        margin-top: 15px;
        background: #3b4346;
        margin-right: 8px;
    }
    .detail-area h1 {
        color: #bfbfbf;
    }
    .property-tile:hover .detail-area h1 {
        color: #587470;
    }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
    .cstm-btn {
        font-size: 17px;
    }
	 .cottage-title {
        width: 30vw;
    }
}
@media (min-width: 1349px) {
	 .cottage-title {
        width: 20vw;
    }
    .signup {
        margin-top: 15px;
    }
    .skew { 
        width: calc(100% + 49px);
    }
    .rightnavblock h1 {
        font-size: 22px;
    }
}
@media (min-width: 1400px) {
    .property-list .cstm-btn {
        font-size: 13px;
    }
   
    .cottage-title {
        width: 27vw;
        padding: 8px 15px 8px 20px;
    }
    .cottage > .four {
        padding: 30px
    }
    .detailsbox > .four {
        padding: 0
    }
}
@media (max-width: 1559px) {
	.separator1{}
}
@media (min-width: 1560px) {
    .cottage .four:first-child, .cottage .four.features {
        width: 32%
    }
    .cottage .detailsbox.four {
        width: 32%;
        margin-Left: 2%
    }
    .cottage .detailsbox .row:first-of-type, .cottage .detailsbox .row:nth-child(2), .cottage .detailsbox .fancyprice {
        width: 100%;
        float: left;
    }
    .cottage .detailsbox > div:last-of-type {
        clear: both
    }
	.cottage .detailsbox.four {
		display: block;
	}
    .cottage .detailsbox.four .half {
		width: 100%;
	}
	 
}
@media (min-width: 1600px) {
     
	 .property-list .detail-and-price {
        width: 30%;
    }
    .property-list .title-area {
        width: 40%;
    }
    .property-list .title-area h5 {
        font-size: 28px;
    }
}
#module{ 
	position: fixed;
    width: 90%;
    max-width: 500px;
	max-height: 70vh;
	overflow-y:scroll;
	box-sizing: border-box;
    top: 12vh;
    left: calc(50% - 250px);
    background-color: #FFFFFF;
    padding: 2rem 4rem;
    z-index: 1001;
	color: #223835;
	-webkit-box-shadow: 10px 10px 15px -4px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 15px -4px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 15px -4px rgba(0,0,0,0.75);
	border-bottom:3px solid #587571;
}
 @media only screen and (max-width: 999px) {
	 
	 .three.columns.filter-col  {
		position:relative;
		margin-bottom: 1em; 
	} 
	
	.three.columns.filter-col .GTG  {
		width: 70px;
		position: absolute;
		right: 1em;
		top: -3em;
		margin: 0;
	}
	.three.columns.filter-col label{
		display: inline-block;
		width: 48%;
	}
	 
 }	 
 @media only screen and (max-width: 750px) {
	 
	 .cottage .detailsbox.four {
		display: block;
	}
    .cottage .detailsbox.four .half {
		width: 100%;
	}
	
 }
 @media only screen and (max-width: 520px) {
	#module{  
		left: 5%;
	}
 }
#module h2{ 
	color: #996E3B; text-align: center;	
}
#closemodule {
	width: 40px; float: right; margin: -1rem; 
}
.st0{fill:none;stroke:#587571;stroke-miterlimit:10;}
.st1{fill:#587571;}
.alterBox {
	padding:2em;
	border-radius:5px;
	font-size:1.1em;
}
.formaware {
	border: 2px solid #CCC;
	padding:2em;
	border-radius:5px;
	margin-bottom: 1em;
}
.faqblock {padding: 3rem 0 8rem; border-bottom: 6px solid #587571; clear: left;}
.answerlist {
	display: flex; flex-wrap: wrap;
}
.answerlist > div {
	width: 48%; margin: 1rem 2% 1rem 0;
}
.totaline { width: 70%; margin: 0 auto 0.5rem 30%; }
.vouchline .col-5 .btn{
		border: 0px solid #FFED00;
		letter-spacing: 0.01em;  
		width: auto; 
		clip-path: unset;
		padding: 5px 10px; border-radius: 5px;
	}
.totaline P, .vouchline P{ font-size: 1.1em; 	line-height: 2.5em;  margin-bottom:0;}
.vouchline P{line-height: 1.3; }
.totaline div{ text-align: right; padding: 0.1rem 1.5rem}
.vouchline P.small{ font-size: 0.9rem; 	line-height: 0.9rem; text-align:left }
.vouchline .bask P.small{ margin-bottom: 1.3rem; }
.cntr {  align-items: center;  display: flex;} 
.vouchline  {  padding: .1em 0; width: 100%; position: relative; border-bottom: 1px solid #eeeefc;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 0.5rem;}
.vouchline.line { border-top: 1px solid #a0805a; border-bottom: 1px solid #a0805a;}
.vouchline h5{  margin-top:.1em; font-size: 1.2em;font-weight: 400;} 
.ticketline h5{font-size: 1.1em;font-weight: 400;} 
.vouchline button{ margin: .5rem;}
.vouchline label {font-size: .8em;font-weight: 400;margin-bottom: 0.1em } 
.discount {
	position: absolute; right: 0;  top: 0;
    margin: -1em 0 0 -1em;
    background-color: #dce7ff;
    padding: 0 1em;
    font-size: .8em; 
    width: auto;
}
.circle{
	background-color: #e9484e;
    font-size: 25px;  text-align: center; color: #ffffff;
    width: 40px; height: 40px; position: absolute;
    top: -20px;
    left: -20px;
	-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;-webkit-box-shadow:0 1px 3px 0 #999;-moz-box-shadow:0 1px 3px 0 #999;box-shadow:0 1px 3px 0 #999
	}
.infocircle{background-color: #8BC34A;  float: left;  height: 25px; width: 25px; color: #fff; text-align: center; cursor: pointer;
    font-weight: 700; font-size: 1.3em; position: relative; padding: 1px; margin: 2px 10px 1px 2px; border: 0; line-height: 25px; -webkit-border-radius: 50%;  -moz-border-radius: 50%; border-radius: 50%; }
.noshow{
	display: none;  font-size: 0.7em;
    width: 300px; height: 0;
    overflow: hidden;  background-color: #FFF;
    color:#8BC34A;
    border: 2px solid #8BC34A;
    padding: 2em; top: 5px;
    left: 5px;
    z-index: 101;
    text-align: left; position: absolute;
    transition: 1s;}
.noshow p{ font-size: .9em; line-height:1.4em; text-align:left;}
.infocircle:hover .noshow{display:block; height:auto;} 
.FAQbox::after {
	content: '';
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 35px;
    height: 25px; 
    top: 1.4em;
    right: 16px;
    position: absolute;
    transition: .3s ease-in-out; 
    background-image: url(../img/arrowright.svg); 
	}
.FAQbox.on::after {
	transform:rotate(-90deg); 
	}
.FAQbox { cursor: pointer;  background-color: #ffffff;
    padding:  1.2em 2em;     margin: 1em auto;
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0 0 15px #16161659;
    position: relative;
    border-radius: 5px;
    max-width: 60em;  }
.moreFaq {
    background-color: #ffffff;
    padding: 2em 0;
	display: none; transition: 1s;
}
.moreFaq.on {display:block;}
.formflex {
    display: flex;
    justify-content: space-between;
}
.formflex > div{
    width: 50%;
}
