*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
  width: 100%;
}
body {
  height: 100%;
  width: 100%;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555;
  font-family: 'Nunito', sans-serif;
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Catamaran', Arial, sans-serif;
}
h2 {
  font-size: 28px;
}
h2 .highlight {
  color: #4b9a4a;
}
/* Classes */
.btn-medium,
.btn-large {
  font-family: 'Nunito', sans-serif;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  line-height: 30px;
  padding: 0 10px;
  background: #448d2a;
  color: #fff;
  border: 0;
}
.btn-large {
  font-size: 16px;
  line-height: 40px;
  padding: 0 20px;
}
.btn-medium:hover,
.btn-large:hover {
  background: #5aaa3d;
}
.btn-medium[disabled],
.btn-large[disabled] {
  color: #ededed;
  background: #98a594;
}
.btn-medium.disabled,
.btn-large.disabled {
  background-color: #aaa;
  color: #666;
  cursor: default;
}
.clearfix {
  display: block;
  float: left;
  clear: both;
}
a.link {
  color: #666;
  text-decoration: none;
  margin-left: 20px;
}
a.link:hover {
  color: #333;
  text-decoration: underline;
}
/* Styling */
#mobile-logo {
  display: none;
}
#bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s;
  z-index: 1;
}
#bg-overlay.visible,
#bg-overlay.page-open {
  opacity: 1;
}
#supersized img {
  max-width: auto;
  max-height: auto;
}
#main-header {
  position: fixed;
  width: 265px;
  height: 100%;
  padding: 50px 0 0;
  text-align: right;
  z-index: 10;
}
#main-header.page-open #menu-container a {
  color: #afafaf;
}
#main-header.page-open #menu-container li.active a {
  color: #fff;
}
#logo {
  position: relative;
  z-index: 11;
  margin: 0 20px 0 40px;
}
#logo img {
  max-width: 100%;
}
#menu-container {
  position: relative;
  z-index: 12;
}
#menu-container a {
  font-family: 'Catamaran', Arial, sans-serif;
  text-decoration: none !important;
  color: #eee;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 24px;
  padding: 5px 18px;
  display: block;
  transition: color 0.4s;
}
#menu-container ul {
  list-style: none;
  padding: 0;
}
#menu-container #main-menu {
  border-right: 2px solid transparent;
  position: relative;
  transition: border-color 0.4s;
}
#menu-container #main-menu .submenued:before {
  content: "";
  display: block;
  right: 0;
  height: 5px;
  width: 5px;
  border-top: 5px solid transparent;
  border-right: 5px solid #afafaf;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.4s;
}
#menu-container #main-menu .submenued:hover > a {
  color: #fff;
}
#menu-container #main-menu .submenu {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.4s, opacity 0.4s;
  position: absolute;
  text-align: left;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100px;
}
#menu-container #main-menu .submenu li {
  border-left: 2px solid #afafaf;
}
#menu-container #main-menu .submenu a {
  display: inline-block;
  white-space: nowrap;
  padding-right: 50px;
}
#menu-container #main-menu.active a {
  color: #afafaf;
}
#menu-container #main-menu.active a:hover {
  color: #fff;
}
#menu-container #main-menu.active > li:hover.submenued:before {
  opacity: 1;
}
#menu-container #main-menu.active > li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  z-index: 13;
}
#menu-container #main-menu.active > li:hover > .submenu a {
  color: #ccc;
}
#menu-container #main-menu.active > li:hover > .submenu a:hover {
  color: #fff;
}
#menu-container #main-menu.active.bordered {
  border-color: #afafaf;
}
#page-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 40px 40px 40px 285px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
#page-wrapper > div {
  margin-bottom: 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  min-height: 100%;
  width: 100%;
}
#page-wrapper #page-close-btn,
#page-wrapper #page-back-btn {
  display: inline-block;
  position: absolute;
  right: 1px;
  top: 1px;
  height: 35px;
  width: 35px;
  background: no-repeat url('../img/close-button-w.png') center center;
  background-color: #111;
  z-index: 999;
}
#page-wrapper #page-close-btn:hover,
#page-wrapper #page-back-btn:hover {
  background-color: #4b9a4a;
}
#page-wrapper #page-back-btn {
  left: 1px;
  right: auto;
  background-image: url('../img/back-button-w.png');
  display: none;
}
#page-wrapper #page-back-btn.visible {
  display: inline-block;
}
#page-wrapper #page {
  padding: 40px;
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s;
}
#page-wrapper.visible {
  opacity: 1;
  visibility: visible;
}
#page-wrapper.visible.menu-active {
  opacity: 0;
  visibility: hidden;
}
#page-wrapper.visible.menu-active #page {
  display: none;
}
#page-wrapper.loading > div {
  background: no-repeat url('../img/loading.gif') center center;
  background-color: rgba(255, 255, 255, 0.9);
}
#page-wrapper.loading > div #page {
  opacity: 0;
  visibility: hidden;
}
#homepage-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: rgba(0, 0, 0, 0.8);
  font-family: "Nunito", sans-serif;
  color: #fff;
  z-index: 999;
}
#news-ticker {
  padding-right: 210px;
  font-size: 14px;
  line-height: 30px;
}
#misc-links {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  text-align: center;
  border-left: 1px solid #444;
  width: 210px;
  background: #222;
}
#misc-links a {
  text-decoration: none;
  color: #aaa;
  font-size: 10px;
  line-height: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 5px;
}
#misc-links a:hover {
  color: #ccc;
}
/* Pages */
.logout-buttons {
  position: absolute;
  top: 1px;
  right: 37px;
  height: 35px;
  text-align: right;
}
.logout-buttons .acnt-name {
  display: block;
  height: 20px;
  line-height: 20px;
  padding: 5px 12px 0;
  color: #4b9a4a;
  font-weight: bold;
  z-index: 999;
  text-decoration: none;
}
.logout-buttons a {
  display: inline-block;
  height: 15px;
  line-height: 15px;
  padding: 0 12px;
  color: #555;
  font-size: 12px;
  font-weight: bold;
  z-index: 999;
  text-decoration: none;
}
.logout-buttons a:hover {
  color: #111;
  text-decoration: underline;
}
.page:after,
.page:before {
  content: '';
  display: block;
  clear: both;
}
.page h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.page .page-type {
  font-family: 'Catamaran', Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}
.page img {
  max-width: 100%;
}
.page h3 {
  margin: 25px 0 0;
  color: #6aaf69;
}
.fields-container {
  margin: 0 -10px;
}
.fields-container:after,
.fields-container:before {
  content: "";
  display: block;
  clear: both;
}
.fields-container > div {
  width: 50%;
  float: left;
  padding: 0 10px;
}
.package-list {
  margin-right: -20px;
  margin-left: -20px;
}
.package-list:after,
.package-list:before {
  content: '';
  display: block;
  clear: both;
}
.package-list .lg-col-4 {
  width: 25%;
  float: left;
  padding: 15px;
}
.package-list .lg-col-4 .package {
  width: 100%;
  margin: 0;
  padding: 5px 5px 10px;
  transition: all 0.4s;
  cursor: pointer;
  border: 1px solid transparent;
}
.package-list .lg-col-4 .package:hover {
  border: 1px solid #ddd;
  background: #fff;
}
.package-list .lg-col-4 .package .package-type {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.package-list .lg-col-4 .package h4 {
  font-size: 18px;
  margin: -5px 0 10px;
}
.package-list .lg-col-4 .package img {
  max-width: 100%;
}
@media screen and (max-width: 1360px) {
  .package-list .col-3 {
    width: 33.3333333%;
  }
}
@media screen and (max-width: 1170px) {
  .package-list .md-col-2 {
    width: 50%;
  }
}
@media screen and (max-width: 890px) {
  .package-list .md-col-2 {
    padding: 10px;
  }
}
@media screen and (max-width: 780px) {
  .package-list .sm-col-1 {
    width: 100%;
  }
  .package-list .sm-col-1 .package {
    width: 270px;
    margin: 0 auto;
  }
}
#carousal-container {
  margin: -40px -40px 0;
}
.focusPrev,
.focusNext {
  top: auto;
  bottom: 0;
  height: 20%;
  background-image: url('../img/carousal-prev.png');
}
.focusNext {
  background-image: url('../img/carousal-next.png');
}
#date-selector {
  width: 70%;
  float: left;
  padding: 0 10px;
}
#booking-summary {
  padding: 0 10px;
  float: left;
  width: 30%;
}
#booking-summary #booking-summary-form label {
  font-family: 'Catamaran', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  width: 100%;
}
#booking-summary #booking-summary-form input,
#booking-summary #booking-summary-form .value {
  font-family: 'Nunito', sans-serif;
  background: transparent;
  border: none;
  font-size: 24px;
  padding: 5px 0;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  color: #555;
}
.form {
  margin: 0 auto 20px;
  padding: 20px;
  background: #fff;
}
.form label {
  font-family: 'Catamaran', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  width: 100%;
  color: #999;
  margin: 10px 0 0px;
}
.form input,
.form select,
.form textarea,
.form .input-replace {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  display: block;
  height: 40px;
  padding: 10px;
  border: 1px solid #888;
  width: 100%;
}
.form textarea {
  height: 108px;
  resize: none;
}
.form .input-replace {
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 18px;
  height: auto;
  line-height: 24px;
  font-weight: bold;
}
.form .input-hidden {
  display: block;
}
.form .input-hidden.invisible {
  display: none;
}
.form .checkbox {
  height: 15px;
  width: 15px;
  display: inline-block;
}
.form .error-message {
  color: #d81f1f;
  font-size: 12px;
}
.form .buttons-container {
  margin: 20px 0 0;
}
#login-form {
  max-width: 400px;
}
.login-heading {
  max-width: 400px;
  margin: 20px auto 10px;
}
.or-seperator {
  width: 70%;
  height: 1px;
  background: #bbb;
  color: #bbb;
  margin: 40px auto;
  padding: 1px 0 0;
}
.or-seperator span {
  height: 30px;
  margin: -13px auto 0;
  display: block;
  background: #eee;
  width: 50px;
  text-align: center;
}
.signup-message {
  text-align: center;
}
.signup-message h3 {
  margin-bottom: 10px;
}
#reset-form {
  max-width: 400px;
}
#booking-else {
  padding: 5px 10px 5px 35px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: no-repeat url('../img/ckbx.png') 10px center;
  background-color: #666;
}
#booking-else:hover {
  background-image: url('../img/ckbx-h.png');
  background-color: #4b9a4a;
}
#booking-else.active {
  background-image: url('../img/ckbx-a.png');
  background-color: #4b9a4a;
}
#member-details {
  display: none;
}
#member-details.visible {
  display: block;
}
#booking-history .dataTables_wrapper {
  padding-top: 1px;
}
#booking-history .dataTables_filter {
  float: left;
}
#booking-history .dataTables_filter input {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  display: block;
  height: 30px;
  padding: 5px 10px;
  border: 1px solid #888;
  width: 200px;
  max-width: 100%;
  margin-bottom: 5px;
}
#booking-history #table_id {
  border-collapse: collapse;
  border-bottom: 1px solid #76a764;
}
#booking-history #table_id th {
  font-family: 'Catamaran', sans-serif;
  font-weight: bold;
  color: #fff;
  background-color: #83bd6e;
  border: 1px solid #76a764;
}
#booking-history #table_id .sorting_asc {
  background-image: url('../img/sort_asc.png');
}
#booking-history #table_id .sorting_desc {
  background-image: url('../img/sort_desc.png');
}
#booking-history #table_id .sorting {
  background-image: url('../img/sort_both.png');
}
#booking-history .paginate_button {
  border: none;
  border-radius: 0;
  padding: 5px 8px;
  min-width: 34px;
  line-height: 24px;
  margin: 0;
  color: #fff !important;
  background: #7fb16c;
}
#booking-history .paginate_button.previous,
#booking-history .paginate_button.next {
  margin: 0 1px;
}
#booking-history .paginate_button.previous {
  background: no-repeat #7fb16c url('../img/carousal-prev-s.png') center center;
  backgroud-size: 80% 80%;
}
#booking-history .paginate_button.next {
  background: no-repeat #7fb16c url('../img/carousal-next-s.png') center center;
}
#booking-history .paginate_button:hover {
  color: #fff;
  background-color: #666;
}
#booking-history .paginate_button.current {
  color: #fff !important;
  background-color: #444;
}
#booking-history .paginate_button.disabled {
  color: #eee !important;
  background-color: #aaa;
}
#loc-map {
  height: 400px;
  min-width: 100%;
  margin: 0 -40px;
  border: 1px solid #999;
  border-width: 1px 0;
}
#social-media {
  display: block;
  list-style: none;
  padding: 0;
  width: 390px;
}
#social-media li {
  float: left;
}
#social-media a {
  display: block;
  height: 70px;
  width: 70px;
  margin: 0 30px 0 0 ;
}
#social-media #fb a {
  background: no-repeat #0182c4 url('../img/fb.png') center center;
}
#social-media #fb a:hover {
  background-color: #0793da;
}
#social-media #tw a {
  background: no-repeat #19bfe5 url('../img/tw.png') center center;
}
#social-media #tw a:hover {
  background-color: #17c8f0;
}
#social-media #gp a {
  background: no-repeat #d64136 url('../img/gp.png') center center;
}
#social-media #gp a:hover {
  background-color: #e54539;
}
