.linkAnimation {
  color: #4b4c3f;
  display: inline-block;
  margin: 20px 10px 0 10px;
  position: relative;
  padding: 3px 5px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  background: none;
}
@media (max-width: 480px) {
  .linkAnimation {
    margin-top: 30px;
  }
}
.linkAnimation:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #af7e09;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.linkAnimation:hover {
  color: #af7e09;
}
.linkAnimation:hover:after {
  bottom: 100%;
}
/* ////////////////////////// GENERAL STYLES AIMED MAINLY AT MEMBER'S AREA  ////////////////////////////////// */
* {
  box-sizing: border-box;
}
#outerborder {
  overflow-x: hidden;
  overflow-y: hidden;
}
body {
  padding: 0;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: #333;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.5px;
  background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Dancing Script', cursive;
  color: #4b4c3f;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0.5px;
}
a {
  color: #af7e09;
  outline: 0;
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  color: #737144;
  outline: 0;
  text-decoration: none;
}
#container {
  min-height: calc(100vh - 50px);
}
@media (max-width: 767px) {
  #container {
    min-height: calc(100vh - 95px);
  }
}
/* /////////////// /// //////////  .inPageContent ONLY styles ///////// ///////////// //// */
.inPageContent {
  color: #4b4c3f;
}
@media (min-width: 768px) and (max-width: 979px) {
  .inPageContent .container {
    width: auto;
  }
}
.inPageContent h1,
.inPageContent h2,
.inPageContent h3,
.inPageContent h4,
.inPageContent h5,
.inPageContent h6 {
  color: #4b4c3f;
}
.inPageContent h1 {
  color: #4b4c3f;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .inPageContent h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.inPageContent h4 {
  color: #af7e09;
  font-size: 28px;
}
.inPageContent h5 {
  display: inline-block;
}
@media (max-width: 480px) {
  .inPageContent h5 {
    display: block;
  }
}
.inPageContent h6 {
  display: inline-block;
}
@media (max-width: 480px) {
  .inPageContent h6 {
    display: block;
  }
}
.inPageContent a {
  color: #af7e09;
}
.inPageContent a:hover,
.inPageContent a:active,
.inPageContent a:focus {
  color: #737144;
}
.inPageContent hr {
  border-top: 1px solid #efefef;
  border-bottom: none;
}
.inPageContent ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.inPageContent ul li {
  color: #333;
  list-style-type: none;
}
.inPageContent ul li:before {
  content: '\f111';
  font-family: 'FontAwesome';
  margin-right: 7px;
  font-size: 6px;
  position: relative;
  top: -2px;
}
.inPageContent table {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.inPageContent table td {
  border: 1px dotted #817f57;
  padding: 5px;
}
@media (max-width: 480px) {
  .inPageContent table td {
    padding: 5px 10px;
    letter-spacing: 0;
  }
}
.inPageContent table th {
  border: 1px dotted #817f57;
  font-weight: normal;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .inPageContent .span12 form fieldset#thankyou {
    padding: 20px 60px;
  }
}
.inPageContent form .customFormLine {
  color: #333;
  position: relative;
}
.inPageContent form .customFormLine input,
.inPageContent form .customFormLine textarea {
  width: 100%;
  margin-bottom: 20px;
  background: #efefef;
}
.inPageContent form .customFormLine input[type="checkbox"] {
  width: auto;
  height: auto;
}
.inPageContent form .customFormLine input {
  height: 35px;
}
.inPageContent form .customFormLine textarea {
  height: 100px;
}
.inPageContent form .customFormLine label,
.inPageContent form .customFormLine .radioLabel {
  color: #4b4c3f;
}
.inPageContent form .customFormLine label.customnoformat {
  display: none;
}
.inPageContent form .customFormRadioItem {
  width: auto;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  display: inline-block;
  padding: 5px;
  margin-bottom: 20px;
}
.inPageContent form .customFormRadioItem input {
  width: auto;
  height: auto;
  margin-top: 16px;
  margin-right: 5px;
}
.inPageContent form .ui-datepicker-trigger {
  position: absolute;
  right: 20px;
  top: -5px;
}
.inPageContent h5 a,
.inPageContent form input[type="submit"],
.inPageContent .map_popup_form input[type=submit] {
  display: inline-block;
  background: #4b4c3f;
  color: #fff;
  border: 1px solid;
  text-transform: uppercase;
  padding: 10px 18px;
  margin: 15px 5px;
  font-size: 14px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: 'Raleway', sans-serif;
}
.inPageContent h5 a:hover,
.inPageContent form input[type="submit"]:hover,
.inPageContent .map_popup_form input[type=submit]:hover {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .inPageContent h5 a,
  .inPageContent form input[type="submit"],
  .inPageContent .map_popup_form input[type=submit] {
    margin: 7px 0;
  }
}
.inPageContent h6 a {
  background: #af7e09;
  color: #fff;
  border: 1px solid #af7e09;
  display: inline-block;
  text-transform: uppercase;
  padding: 10px 18px;
  margin: 15px 5px;
  font-size: 14px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: 'Raleway', sans-serif;
}
.inPageContent h6 a:hover {
  color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .inPageContent h6 a {
    margin: 7px 0;
  }
}
/* /////////////// /// //////////  .subMenu ONLY styles ///////// ///////////// //// */
.subMenu {
  background: #5a5a4f;
  text-align: center;
  padding: 5px;
}
@media (max-width: 480px) {
  .subMenu {
    padding: 10px;
  }
}
.subMenu ul {
  margin: 0;
}
.subMenu .menu-section h2 {
  display: none;
}
.subMenu .menu-section li {
  list-style-type: none;
  display: inline;
  text-transform: uppercase;
  font-size: 14px;
}
.subMenu .menu-section li::after {
  content: '-';
  padding: 0 7px;
  color: #fff;
}
@media (max-width: 480px) {
  .subMenu .menu-section li::after {
    display: none;
  }
}
.subMenu .menu-section li:last-child:after {
  display: none;
}
.subMenu .menu-section li.current a {
  color: #af7e09;
}
.subMenu .menu-section li a {
  margin: 10px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
}
.subMenu .menu-section li a:hover {
  color: #af7e09;
}
@media (max-width: 480px) {
  .subMenu .menu-section li a {
    margin: 10px;
    display: block;
    border: 1px solid #fff;
    padding: 10px;
  }
}
/* /////////////// /// //////////  .sliderHolder + captions/scroll/navs etc styles ///////// ///////////// //// */
.sliderHolder {
  position: relative;
}
.sliderHolder:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.3);
}
.sliderHolder .galleryInner,
.sliderHolder .galleryInner img {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100%;
  object-fit: cover;
  min-height: 450px;
}
@media (max-width: 1199px) {
  .sliderHolder .galleryInner,
  .sliderHolder .galleryInner img {
    height: auto !important;
  }
}
.sliderHolder.innerSliderHolder .galleryInner,
.sliderHolder.innerSliderHolder .galleryInner img {
  height: auto !important;
  min-height: 250px;
  max-height: 600px;
  object-fit: cover;
}
.sliderHolder .nivo-directionNav {
  display: none !important;
}
.sliderHolder .nivo-controlNav-Wrapper {
  display: none !important;
}
.sliderHolder .nivo-caption {
  left: 50%;
  top: 50%;
  bottom: auto;
  width: 100%;
  height: auto;
  background: none;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 1;
  z-index: 10;
}
@media (max-width: 979px) {
  .sliderHolder .nivo-caption {
    top: 40%;
  }
}
.sliderHolder .nivo-caption h4 {
  font-size: 58px;
  line-height: 68px;
  padding: 0 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .sliderHolder .nivo-caption h4 {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (max-width: 480px) {
  .sliderHolder .nivo-caption h4 {
    font-size: 36px;
  }
}
.sliderHolder .nivo-caption p {
  font-size: 18px;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .sliderHolder .nivo-caption p {
    font-size: 15px;
    padding: 0 20px !important;
  }
}
/* /////////////// //// ////////// WEATHER ///////////////// ///////////////// */
.sidebar .weather .weatherDiv {
  padding-top: 5px;
}
@media (min-width: 980px) {
  .sidebar .weather .weatherDiv {
    min-width: 390px;
  }
}
@media (max-width: 979px) {
  .sidebar .weather .weatherDiv {
    min-width: auto;
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 979px) {
  .sidebar .weather .weathers {
    float: none;
    margin-right: 0;
    border: none;
  }
}
.sidebar .weather .weathers .weatherSingle {
  align-items: center;
  display: inline-block;
  line-height: 18px;
  width: 90px;
  margin-right: 15px;
  font-size: 11px;
  margin-bottom: 10px;
}
.sidebar .weather .weathers .weatherDate {
  float: left;
  margin-left: 48px;
}
.sidebar .weather .weathers .weatherTemp {
  float: right;
  clear: right;
  margin-right: 16px;
}
.sidebar .weather .weathers .weatherImage {
  position: absolute;
  background: #dfddd5;
}
.sidebar .weather .weathers .weatherImage img {
  width: 40px;
}
.body-public #globalwrap .image-night {
  background: none;
}
/* ////////// ///////////////////////  HOLE TOUR MENU STYLES /////////////// ////////////////////  */
.holeNavigationRow {
  background: #5a5a4f;
  position: absolute;
  margin-top: -60px;
  z-index: 10;
}
@media (max-width: 767px) {
  .holeNavigationRow {
    margin-top: 0;
    position: relative;
    padding: 10px;
  }
}
.holeNavigationRow .menu-section h2 {
  display: none;
}
.holeNavigationRow .holeNavigation {
  text-align: center;
  padding: 10px;
}
.holeNavigationRow .holeNavigation .menu-section {
  display: inline-block;
  position: relative;
  width: auto;
  margin: 0 auto;
  text-align: center;
}
.holeNavigationRow .holeNavigation .menu-section ul {
  margin: 0;
}
.holeNavigationRow .holeNavigation .menu-section ul li {
  list-style-type: none;
  display: inline;
}
.holeNavigationRow .holeNavigation .menu-section ul li a {
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  padding: 7px 0;
  font-weight: normal;
  font-size: 18px;
  text-decoration: none;
  margin: 0;
}
@media (max-width: 767px) {
  .holeNavigationRow .holeNavigation .menu-section ul li a {
    display: inline-block;
    width: 35px;
    float: left;
    margin: 5px;
    padding: 7px;
    background: rgba(75, 76, 63, 0.8);
    color: #fff;
  }
}
.holeNavigationRow .holeNavigation .menu-section ul li a:hover {
  color: #af7e09;
}
@media (max-width: 767px) {
  .holeNavigationRow .holeNavigation .menu-section ul li a:hover {
    background: #af7e09;
    color: #fff;
  }
}
.holeNavigationRow .holeNavigation .menu-section ul li a:before {
  content: "-";
  padding: 0 10px;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .holeNavigationRow .holeNavigation .menu-section ul li a:before {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .holeNavigationRow .holeNavigation .menu-section ul li a:before {
    display: none;
  }
}
.holeNavigationRow .holeNavigation .menu-section ul li:first-child a:before {
  display: none;
}
.holeNavigationRow .holeNavigation .menu-section ul li.current a {
  color: #af7e09;
}
@media (max-width: 767px) {
  .holeNavigationRow .holeNavigation .menu-section ul li.current a {
    background: rgba(75, 76, 63, 0.8);
  }
}
@media (max-width: 767px) {
  .holeNavigationRow .holeNavigation .menu-section ul li:nth-child(10) a {
    clear: left;
  }
}
@media (max-width: 480px) {
  .holeNavigationRow .holeNavigation .menu-section ul li:nth-child(10) a {
    clear: none;
  }
}
@media (max-width: 480px) {
  .holeNavigationRow .holeNavigation .menu-section ul li:nth-child(7) a,
  .holeNavigationRow .holeNavigation .menu-section ul li:nth-child(13) a {
    clear: left;
  }
}
/* ////////// ///////////////////////  HOLE STAT STYLES /////////////// ////////////////////  */
.holeStats {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .holeStats {
    margin: 10px auto;
    text-align: left;
    display: inline-block;
  }
}
.holeStats .statContainer {
  display: inline-block;
  position: relative;
  margin: 10px;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .holeStats .statContainer {
    margin: 10px;
    display: block;
  }
}
.holeStats .statContainer .statCircle {
  height: 12px;
  width: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: none;
  display: inline-block;
  position: absolute;
  left: 0;
  transform: translatey(-50%);
  top: 50%;
}
.holeStats .statContainer .statCircle.whiteCircle {
  background: #fff;
}
.holeStats .statContainer .statCircle.yellowCircle {
  background: #fff000;
}
.holeStats .statContainer .statCircle.blueCircle {
  background: #0060ff;
}
.holeStats .statContainer .statCircle.redCircle {
  background: #ff0000;
}
/* //////// ///////////////////   .addressFooter STYLES  ///////// //// ////////////////// ////  */
.addressFooter .sectionOne {
  background: #4b4c3f;
  color: #fff;
  padding: 50px 20px;
}
@media (max-width: 767px) {
  .addressFooter .sectionOne {
    text-align: center;
  }
}
.addressFooter .sectionOne h3 {
  color: #af7e09;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.addressFooter .sectionOne h4 {
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
}
.addressFooter .sectionOne .socialBoxes {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (min-width: 481px) and (max-width: 767px) {
  .addressFooter .sectionOne .socialBoxes {
    width: 440px;
  }
}
@media (max-width: 767px) {
  .addressFooter .sectionOne .socialBoxes {
    margin: 50px auto 70px auto;
  }
}
.addressFooter .sectionOne .socialBoxes .box {
  width: 130px;
  background: #737144;
  position: relative;
  text-align: center;
  height: 78px;
  padding-top: 32px;
}
@media (max-width: 1199px) {
  .addressFooter .sectionOne .socialBoxes .box {
    width: 120px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .addressFooter .sectionOne .socialBoxes .box {
    width: 90px;
  }
}
@media (max-width: 480px) {
  .addressFooter .sectionOne .socialBoxes .box {
    width: 90px;
  }
}
.addressFooter .sectionOne .socialBoxes .box.boxTwo {
  background: #335c64;
}
.addressFooter .sectionOne .socialBoxes .box.boxThree {
  background: #9c583f;
}
.addressFooter .sectionOne .socialBoxes .box h4 {
  position: absolute;
  font-size: 22px;
  top: -25px;
  width: 100%;
  font-weight: normal;
  font-family: 'Dancing Script', cursive;
}
@media (min-width: 768px) and (max-width: 979px) {
  .addressFooter .sectionOne .socialBoxes .box h4 {
    font-size: 19px;
  }
}
@media (max-width: 480px) {
  .addressFooter .sectionOne .socialBoxes .box h4 {
    font-size: 19px;
  }
}
.addressFooter .sectionOne .socialBoxes .box .socialIcons {
  display: flex;
}
.addressFooter .sectionOne .socialBoxes .box .socialIcons .icon {
  width: 50%;
  border-top: 1px solid #4b4c3f;
  border-right: 1px solid #4b4c3f;
}
.addressFooter .sectionOne .socialBoxes .box .socialIcons .icon:last-of-type {
  border-right: none;
}
.addressFooter .sectionOne .socialBoxes .box .socialIcons .icon a {
  color: #4b4c3f;
  display: block;
  padding: 10px 5px;
}
.addressFooter .sectionOne .socialBoxes .box .socialIcons .icon a:hover {
  color: #af7e09;
}
@media (min-width: 768px) {
  .addressFooter .sectionOne .findUs {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .addressFooter .sectionOne .getInTouch {
    margin: 40px 0;
  }
}
.addressFooter .sectionOne .getInTouch a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}
.addressFooter .sectionOne .getInTouch a:hover {
  color: #737144;
}
.addressFooter .middleSection {
  position: relative;
}
.addressFooter .middleSection img {
  position: absolute;
  top: -66px;
  left: 50%;
  transform: translatex(-50%);
}
@media (max-width: 979px) {
  .addressFooter .middleSection img {
    top: -35px;
    width: 80px;
  }
}
.addressFooter .sectionTwo {
  padding: 50px 20px;
  min-height: 230px;
  position: relative;
}
@media (max-width: 767px) {
  .addressFooter .sectionTwo {
    padding-top: 110px;
  }
}
.addressFooter .sectionTwo .right,
.addressFooter .sectionTwo .left {
  position: absolute;
  left: 35px;
  top: 100px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #929382;
}
@media (max-width: 767px) {
  .addressFooter .sectionTwo .right,
  .addressFooter .sectionTwo .left {
    letter-spacing: 0.5px;
    position: relative;
    text-align: center;
    left: auto;
    top: auto;
  }
}
.addressFooter .sectionTwo .right {
  left: auto;
  right: 20px;
}
@media (max-width: 767px) {
  .addressFooter .sectionTwo .right {
    right: auto;
    margin-top: 15px;
  }
}
.addressFooter .sectionTwo .right .links a {
  padding: 0 15px;
  color: #929382;
}
.addressFooter .sectionTwo .right .links a:hover {
  color: #737144;
}
@media (max-width: 480px) {
  .addressFooter .sectionTwo .right .links a {
    display: block;
  }
}
.addressFooter .sectionTwo .right a.igLogo img {
  width: 145px;
  float: right;
  margin-top: 20px;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .addressFooter .sectionTwo .right a.igLogo img {
    float: none;
    margin-right: 0;
  }
}
/* //////// ///////////////////   .footer STYLES  ///////// //// ////////////////// ////  */
.footer {
  background: #5a5a4f;
  color: #fff;
  font-size: 0.8em;
  height: 50px;
  line-height: 28px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
    height: 95px;
    line-height: 22px;
    padding: 10px 5px 2px 5px;
  }
}
.footer a.igLogo img {
  width: 85px;
  float: right;
}
@media (max-width: 767px) {
  .footer a.igLogo img {
    float: none;
  }
}
@media (max-width: 767px) {
  .footer .break767 {
    display: block;
    font-size: 0;
    line-height: 0;
  }
}
.body-public .footer {
  display: none;
}
/* //////// ///////////////////   inPageContent gallery and slider STYLES  ///////// //// ////////////////// ////  */
.inPageContent #gallery div.ss-controls .play,
.inPageContent div#thumbs div.top,
.inPageContent #gallery div.caption-container,
.inPageContent #gallery div.controls {
  display: none;
}
.inPageContent #gallery div.slideshow img {
  border: none;
}
.inPageContent #gallery div.slideshow span.image-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .inPageContent .span12 #thumbs {
    width: 750px !important;
    margin: 0 auto;
    float: none;
  }
}
.inPageContent .span12 #gallery {
  max-width: 750px;
  margin: 0 auto;
}
.inPageContent #thumbs li:before {
  display: none;
}
.inPageContent #thumbs ul.thumbs li.selected a.thumb {
  background: none;
}
.inPageContent #thumbs a.thumb {
  padding: 0;
  border: none;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.inPageContent .pull-right.gallery-image,
.inPageContent .pull-left.gallery-thumbs {
  width: 100%;
}
.inPageContent .pull-left.gallery-thumbs {
  margin-left: 0;
  margin-top: 0;
}
.inPageContent div#thumbs div.bottom {
  margin-top: 22px;
  float: left;
}
.inPageContent div.pagination span.current {
  background-color: rgba(75, 76, 63, 0.8);
  border-color: rgba(75, 76, 63, 0.8);
}
.inPageContent ul.thumbs img {
  margin: 0;
}
.inPageContent div.pagination a,
.inPageContent div.pagination span.current,
.inPageContent div.pagination span.ellipsis {
  margin-right: 8px;
}
.inPageContent div.pagination a:hover {
  background-color: #404242;
}
.inPageContent .galleryWrapper.galleryWrapperNivo {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .inPageContent .galleryWrapper.galleryWrapperNivo {
    max-width: 750px;
    margin: 0 auto;
  }
}
.inPageContent .galleryInner.nivoInner.nivoSlider,
.inPageContent .galleryInner.nivoInner.nivoSlider img {
  max-width: 100%;
  width: 100% !important;
  height: auto !important;
}
.inPageContent .nivo-controlNav-Wrapper {
  position: absolute;
  width: 100px;
  bottom: 10px;
  left: auto;
  right: 10px;
  z-index: 9;
}
.inPageContent .nivo-controlNav a {
  background: #eaeaea;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 3px;
}
.inPageContent .nivo-controlNav a.active {
  background: #ffa737;
}
.inPageContent .nivo-directionNav {
  display: none !important;
}
.inPageContent .nivo-caption {
  display: none !important;
}
/* //////// ///////////////////   navbar standard styles  ///////// //// ////////////////// ////  */
#header .navbar {
  margin-bottom: 0;
}
#header .navbar-inner {
  background: #5a5a4f;
  border: none;
  min-height: 60px;
}
#header .navbar-inner .container {
  position: relative;
}
@media (max-width: 767px) {
  #header .navbar-inner .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 980px) {
  #header .navbar-inner #nav {
    left: 150px;
  }
}
@media (max-width: 979px) {
  #header .navbar-inner #nav {
    margin-top: 90px;
  }
}
#header .navbar-inner #nav li.dropdown .dropdown-toggle {
  background-color: transparent;
}
@media (max-width: 979px) {
  #header .navbar-inner #nav li.dropdown .dropdown-toggle {
    background: rgba(75, 76, 63, 0.8) url("https://bassetdown.designmode.intelligentgolf.co.uk/images/resources/bassetdown/menuDownToggle2.png") right 15px center no-repeat;
  }
}
@media (max-width: 979px) {
  #header .navbar-inner #nav li.dropdown.open .dropdown-toggle {
    background: rgba(75, 76, 63, 0.8) url("https://bassetdown.designmode.intelligentgolf.co.uk/images/resources/bassetdown/menuUpToggle.png") right 15px center no-repeat;
  }
}
#header .navbar-inner #nav li a {
  color: #fff;
  padding: 20px 12px;
  text-transform: uppercase;
  font-size: 12px;
}
@media (min-width: 980px) and (max-width: 1199px) {
  #header .navbar-inner #nav li a {
    letter-spacing: 0.2px;
    color: #fff;
    padding: 20px 12px;
  }
}
@media (max-width: 979px) {
  #header .navbar-inner #nav li a {
    background: rgba(75, 76, 63, 0.8);
    margin: 10px;
    padding: 12px !important;
  }
}
#header .navbar-inner #nav li a:hover {
  color: #cda851;
}
#header .navbar-inner #nav li a#logoutbtn {
  color: #cda851;
}
#header .navbar-inner #nav li .dropdown-menu {
  margin: 0;
  background-color: rgba(75, 76, 63, 0.8);
  border: none;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 980px) {
  #header .navbar-inner #nav li .dropdown-menu {
    display: block;
  }
}
@media (max-width: 979px) {
  #header .navbar-inner #nav li .dropdown-menu {
    margin: 0 20px 0 20px;
    background: none;
  }
}
#header .navbar-inner #nav li .dropdown-menu a {
  padding: 8px 12px;
  border-bottom: 1px dotted #0b0b1d;
}
@media (min-width: 980px) {
  #header .navbar-inner #nav li .dropdown-menu a:hover {
    background: none;
  }
}
#header .navbar-inner #nav li .dropdown-menu li:last-child a {
  border: none;
}
#header .navbar-inner #nav li.open > .dropdown-menu {
  pointer-events: auto;
  opacity: 1;
}
#header .navbar-inner #nav li.current > a,
#header .navbar-inner #nav li.active > a {
  color: #cda851;
}
#header .navbar-inner #nav li.active.open > a {
  color: #fff;
}
#header .navbar-inner #nav li.nav-menu-information ul li:nth-last-child(2) a {
  border: none;
}
#header .navbar-inner .logoLink {
  position: absolute;
  left: 0;
  width: 142px;
  z-index: 9;
}
@media (max-width: 979px) {
  #header .navbar-inner .logoLink {
    left: 50%;
    transform: translatex(-50%);
    top: -5px;
  }
}
#header .navbar-inner #hamburger-icon {
  outline: 0;
  position: absolute;
  right: 15px;
  top: 10px;
  background-color: transparent;
  z-index: 100;
  width: 60px;
  color: #fff;
  border: none;
  text-transform: uppercase;
  border-radius: 0;
}
@media (min-width: 980px) {
  #header .navbar-inner #hamburger-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  #header .navbar-inner #hamburger-icon {
    right: 25px;
  }
}
#header .navbar-inner #hamburger-icon .line {
  display: block;
  background: #fff;
  height: 3px;
  margin: 5px;
  right: 18px;
  border-radius: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#header .navbar-inner #hamburger-icon .line.line-1 {
  margin-top: 3px;
}
.topRightLogin {
  display: none;
}
.body-public #header .navbar-inner .topRightLogin {
  display: inline-block;
  position: absolute;
  right: 0;
  z-index: 99;
}
@media (max-width: 979px) {
  .body-public #header .navbar-inner .topRightLogin {
    right: auto;
    left: 0;
    top: 0;
  }
}
.body-public #header .navbar-inner .topRightLogin a {
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  background: #af7e09;
  padding: 17px 45px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.body-public #header .navbar-inner .topRightLogin a:hover {
  background: #87620b;
}
@media (max-width: 979px) {
  .body-public #header .navbar-inner .topRightLogin a {
    padding: 17px;
  }
}
@media (min-width: 980px) {
  .body-public #header .navbar-inner #nav li.nav-level-1.nav-menu-member_login {
    display: none;
  }
}
.body-public #header .navbar-inner #nav li .dropdown-menu a {
  padding: 8px 12px;
}
.body-public #header .navbar-inner #nav li a {
  padding: 20px 25px;
}
@media (min-width: 980px) and (max-width: 1199px) {
  .body-public #header .navbar-inner #nav li a {
    padding: 20px;
  }
}
/* //////// ///////////////////   system pages no need to touch  ///////// //// ////////////////// ////  */
.hcapsig {
  word-wrap: break-word;
}
/*  styles moved from custom css zashtoto ne sa pipani*/
.forceFullWidth {
  position: relative;
  width: 100vw !important;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.body-public span.customFormRadioItem + br {
  display: none;
}
/* Google Map Styles */
div#map_container {
  width: 100% !important;
  height: 550px !important;
  color: #333;
}
a#map_to_here_button:hover,
a#map_from_here_button:hover {
  color: #af7e09;
}
.gm-style .gm-style-iw-c {
  line-height: 24px !important;
  border-top: 10px solid #5a5a4f !important;
}
#globalwrap .map_popup_form input[type=text] {
  height: 35px !important;
}
.gm-style-iw-d {
  padding: 0 5px !important;
}
/* //// ///// MIN WIDTH 980 ///// //// ///////  */
@media (min-width: 980px) {
  #globalwrap {
    padding-top: 0;
  }
}
/* ///// //// MIN WIDTH 768 /// ////////// /   */
@media (min-width: 768px) {
  .moveRight768AndAbove {
    float: right !important;
  }
  .removeMarginLeft768AndAbove {
    margin-left: 0 !important;
  }
}
/* end of styles moved from custom css */
.inPageContent .span12 form .customFormLine input,
.inPageContent .span12 form .customFormLine textarea {
  text-align: center;
}
#date_form .picker input {
  cursor: pointer;
  padding: 3px;
  margin-right: 15px !important;
}
img.ui-datepicker-trigger {
  position: absolute;
  right: 20px;
  top: 0;
}
#header .navbar-inverse .nav li.nav-menu-information .dropdown-menu > li:nth-last-child(2) > a {
  border-bottom: none;
}
.body-root-information #global .container {
  max-width: 100%;
}
body[class^="body-class-setcoursestatuscourseid"] .holdsGlobalWrap {
  word-break: break-word;
}
#statusform textarea {
  max-width: 100%;
}
.body-public .tipForm form input[type="submit"] {
  letter-spacing: 0;
  font-size: 12px;
  padding: 5px 10px;
}
.cluetip-jtip #cluetip-inner {
  overflow: hidden;
}
.php-ckeditor .inPageContent td {
  border: 2px solid #1a4267 !important;
}
.body-class-visitorbooking.body-public img.ui-datepicker-trigger {
  top: 0;
  right: 20px;
  position: absolute;
}
.body-class-visitorbooking.body-public #date_form .picker input[type=text] {
  margin-right: 20px;
}
.hcapsig .dropdown-menu {
  background-color: #dedfde;
}
div#cluetip {
  /*width: auto !important; this was causing a shadow on Wells visitor booking pop up but needed on previous sites */
}
.cc-cookies {
  width: 100% !important;
}
.body-root-home #latestcomp img[height="16"],
img[height="14"] {
  margin-left: 7px;
  margin-top: -3px;
}
.php-search input#string {
  height: 40px;
}
.php-messages .well-large {
  padding: 0px;
}
.php-halloffame h1 {
  font-size: 24px;
  border-bottom: 1px dotted;
  padding-bottom: 20px;
}
.php-roundmgmt .dateperiods {
  /* float:none; THIS WAS CAUSING OVERLAPPING ON SMALL SCREEN PAGE FOR ROUNDMGMT */
}
.php-roundmgmt #globalwrap {
  overflow: scroll;
}
#login fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  display: inline-block;
}
#login fieldset .control-label {
  float: none;
  width: auto;
  padding-top: 10px;
  text-align: center;
}
#login fieldset .controls {
  margin-left: auto;
}
#login fieldset .controls input.btn {
  margin-left: 0;
  margin-right: 0;
}
#login fieldset .controls input[type="checkbox"] {
  height: auto;
  margin: 10px 0 30px 0;
}
#login fieldset .controls label.checkbox input.inline {
  width: 20px !important;
  margin: 4px 0 20px 0;
}
.php-hcaprecord #global {
  overflow: scroll;
}
#latestcomp,
#upcomingcomps,
#previouscomps,
#fpmessagediv,
#admin_dash,
.announcements,
#myupcoming,
#myteetimes,
.news,
.members-mobile-scoreentry,
#halloffame {
  border: 2px solid #b99863;
  background: rgba(255, 255, 255, 0.8);
}
.teetimesholder th,
#memteetimes th,
.teetimesholder thead tr {
  border: #706862 1px solid;
}
table.teetimesholder td {
  border-right: 1px #294761 solid;
}
#memteetimes {
  border: 1px #706862 solid;
}
#memteetimes td {
  border-left: #706862 1px solid !important;
  border-bottom: #706862 1px solid !important;
}
#memteetimes tbody tr {
  border-bottom: #706862 1px solid !important;
}
#global .tabs ul {
  background: #706862 !important;
}
#globalwrap .adminWrapper table.admin thead th,
#globalwrap .adminWrapper table.admin thead td {
  color: white!important;
}
.inner-page .container {
  background: none;
  margin-left: -20px;
}
.body-root-roundmgmt\.php #ui-datepicker-div {
  display: none;
}
.gr-textarea-btn {
  display: none;
}
#closebutton + br {
  display: none !important;
}
.nav .nav-menu-login\.php {
  display: none !important;
}
.navbar .nav li ul.dropdown-menu li.nav-menu-information {
  display: none;
}
#ui-datepicker-div {
  position: absolute;
  top: -100%;
  left: -100%;
}
#date_form .picker {
  right: 0px !important;
}
table.tee_process {
  display: none !important;
}
.php-weatherfg .image-day {
  background: #87CEEB;
}
.php-weatherfg .image-night {
  background: #3c4a90;
}
.php-visitoropen #globalwrap > div {
  max-width: 100%;
}
#facebox {
  position: absolute;
  top: 150px !important;
  z-index: 9999;
}
#globalwrap table.mceLayout[style] {
  width: 100% !important;
}
.mceItemTable {
  width: 100% !important;
  max-width: 100%;
}
.body-class-members #leftcontent > div,
.body-class-members #rightcontent > div,
body:not(.body-public) #leftcontent > div,
body:not(.body-public) #rightcontent > div {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #ffffff21;
}
.body-class-members .teetimesholder th,
.body-class-members #memteetimes th,
body:not(.body-public) .teetimesholder th,
body:not(.body-public) #memteetimes th {
  color: #fff !important;
  background-color: grey !important;
}
.body-class-members .login-btn,
body:not(.body-public) .login-btn {
  display: none;
}
.body-class-members .btn-group > .btn,
body:not(.body-public) .btn-group > .btn {
  float: left;
}
.body-class-members .dateperiods a,
body:not(.body-public) .dateperiods a {
  float: left;
}
/* ///// NAVBAR TO TO SCROLL UP ON MEMBERS PAGES & SYSTEM FRONT-END  ///*/
/* php-ckeditor */
.php-ckeditor #outerborder #myNavbar {
  display: none;
}
.php-ckeditor .nav-collapse {
  position: relative;
}
.php-ckeditor .nav-collapse span {
  color: #fff !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.php-ckeditor .navbar .btn,
.php-ckeditor .navbar .btn.btn-primary,
.php-ckeditor .navbar .btn-group .btn {
  margin: 10px 0px;
}
.php-ckeditor .navbar .btn-group {
  margin: 0px 0px !important;
}
.php-ckeditor .CodeMirror-wrap .CodeMirror-scroll {
  position: relative;
  height: 1000px;
  overflow: auto;
}
div.sticky-queue {
  border: none !important;
}
div.sticky-note {
  padding-bottom: 20px;
}
a.btn.btn-danger,
a.btn.btn-success {
  color: #fff;
}
.body-class-members .navbar-inverse .nav .dropdown-menu > li > a {
  padding: 7px 10px;
}
/* system login page & course status */
#login input,
.php-coursestatus textarea,
.body-class-setcoursestatus textarea,
.body-class-setcoursestatuscourseid1 textarea {
  height: 40px;
  width: 100% !important;
  margin-bottom: 10px;
}
#login .controls input.btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: none;
  border: none;
  margin-top: 20px;
}
#login label.checkbox {
  padding-left: 0;
  text-align: center;
}
#login .controls label.checkbox input.inline {
  margin-left: -5px;
}
.php-coursestatus a.button.btn.btn-info.btn-small,
.body-class-setcoursestatus a.button.btn.btn-info.btn-small {
  margin: 5px;
  color: #fff !important;
}
.php-coursestatus a[href*="setcoursestatus"],
.body-class-setcoursestatus a[href*="setcoursestatus"],
.body-class-setcoursestatuscourseid1 a[href*="setcoursestatus"],
body[class*="body-class-setcoursestatus"] a[href*="setcoursestatus"] {
  word-break: break-word;
}
.ui-widget-header {
  border: none;
  background: #dab380;
}
body.body-class-setcoursestatus h1 {
  font-size: 32px;
  border-bottom: 1px dotted;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
body.body-class-setcoursestatus form input[type="submit"] {
  /*margin-top: 0; this causing button to be out of line on recent sites */
}
body.body-class-setcoursestatus form input[name="loginword"] {
  height: 38px;
}
/* ///////////// /////////// max-width 1199px ////////////////// ///// */
@media (max-width: 1199px) {
  .nametable a.btn.button {
    font-size: 11px !important;
  }
  .nametable td {
    font-size: 11px !important;
    padding: 5px 2px !important;
  }
}
/* media queries members that generall don't need touching */
@media (max-width: 979px) {
  body.php-viewround table {
    font-size: 13px;
  }
  .php-viewround .table th,
  .table td {
    padding: 5px;
  }
  #globalwrap .teebooking #date_form .tabs li.current a {
    background: #4f925a !important;
    color: #fff;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .body-class-members #globalwrap,
  body:not(.body-public) #globalwrap,
  .body-class-opens #globalwrap,
  .php-login #globalwrap,
  .body-loginpage #globalwrap,
  .php-news #globalwrap,
  .php-competition #globalwrap,
  .php-teelogin #globalwrap,
  .php-visitoropen #globalwrap,
  .php-sagepay #globalwrap,
  body[class^='body-class-setcoursestatus'] #globalwrap,
  .body-class-visitorbooking #globalwrap {
    margin-left: 5px;
    margin-right: 5px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  #globalwrap .teebooking #date_form .tabs li.current a {
    font-size: 14px;
    margin: 0;
  }
}
@media (max-width: 480px) {
  #login fieldset {
    transform: translateX(0px);
  }
  .php-coursestatus a.button.btn.btn-info.btn-small,
  .body-class-setcoursestatus a.button.btn.btn-info.btn-small {
    margin: 5px;
    display: block;
  }
  .php-coursestatus ul.unstyled li,
  .body-class-setcoursestatus ul.unstyled li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ddd;
  }
  .php-coursestatus ul.unstyled,
  .body-class-setcoursestatus ul.unstyled {
    padding-top: 20px;
  }
  /* weather members */
  .php-weatherfg .nav-tabs a {
    font-size: 12px;
    padding: 5px 2px;
  }
  /* compact tables small screens */
  table td {
    font-size: 12px;
  }
  table th {
    font-size: 12px;
    font-weight: normal !important;
    padding: 2px !important;
  }
  .php-viewround .table th,
  .table td {
    padding: 5px 2px;
    font-size: 10px;
    letter-spacing: 0;
  }
  .php-awayplayer table {
    display: block;
    overflow-x: auto;
  }
  table.table.scorecard {
    display: block;
    overflow-x: auto;
  }
}
@media (max-width: 480px) {
  #diaryTable.table {
    display: block;
    overflow-x: auto;
  }
}
/* make css editor in backend more manageable */
.CodeMirror-wrap .CodeMirror-scroll {
  height: 600px;
}
/*-----------------------------------------------------------------
                SCORECARD
-----------------------------------------------------------------*/
.scorecard {
  text-align: center;
  border: 1px solid #a5a5a5;
}
.scorecard td,
.scorecard th {
  border: 1px solid #a5a5a5;
  text-align: center;
}
.White {
  background: #fff;
  color: #333;
}
.Yellow {
  background: #ffff00;
  color: #333;
}
.Red {
  background: #ff0000;
  color: #fff;
}
.Blue {
  background: #0063ac;
  color: #fff;
}
.body-public.php-cookie-usage #global {
  padding-top: 90px;
}
@media (max-width: 979px) {
  .body-public.php-cookie-usage #global {
    padding: 20px;
  }
}
#globalwrap .map_popup_form input[type=submit] {
  font-size: 11px;
  padding: 5px;
}
.body-public[class*="php-"] #globalwrap {
  background: #efefef;
  padding: 20px;
  margin-top: 90px;
  color: #333;
  margin-bottom: 50px;
}
/* ////// ////////////////////////////// //////////////////////// //////////////////// ///////////////////// /////////// //////////////////// END OF STYLES FOR MEMBERS PAGES THAT GENERALLY DO NOT NEED TO TOUCH ///////////////// ////// ///// / ////////////////////////////////////////////// ////////////////////////////////// //////////////////////////////////////////// ///////////////// ////////////////////////// ////////////////// */
body[class*="php-"] .content-wrapper,
.body-class-members .content-wrapper,
.body-class-visitorbooking .content-wrapper,
.body-class-getawayletter .content-wrapper,
[class*="body-class-setcoursestatus"] .content-wrapper,
.body-class-opens .content-wrapper {
  width: 1195px;
  margin: 0px auto;
  padding-top: 30px;
}
@media (max-width: 1199px) {
  body[class*="php-"] .content-wrapper,
  .body-class-members .content-wrapper,
  .body-class-visitorbooking .content-wrapper,
  .body-class-getawayletter .content-wrapper,
  [class*="body-class-setcoursestatus"] .content-wrapper,
  .body-class-opens .content-wrapper {
    width: 98%;
    margin: 0 auto;
  }
}
/* fix for my golf my rounds overlaping table with gross scoring trend */
@media (min-width: 768px) and (max-width: 979px) {
  table#course-handicap {
    overflow: auto;
    display: block;
  }
}
/* make memteetime table scroll x on mobile portrait */
@media (max-width: 480px) {
  table#memteetimes,
  .body-class-members #globalwrap table#memteetimes {
    width: 100%;
    display: block;
    overflow: auto;
  }
}
/* AQ Facebook style */
#facebox input {
  height: 30px;
}
@media (max-width: 480px) {
  .php-knockout table.knockout {
    display: block;
    overflow-x: auto;
  }
}
/* ------------  NEW FLEXIBLE ACCOUNT PAGE BACK END ---------------  */
.php-flexiblereport input[name="setdate"] {
  display: block;
}
@media (max-width: 480px) {
  .php-flexiblereport form {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  table#threads {
    display: block;
    overflow: auto;
  }
}
/* //////// ///////////////////   system pages to customise css  ///////// //// ////////////////// ////  */
body #globalwrap .price span.badge {
  width: 44px !important;
  font-size: 12px !important;
}
/* ///////////////// MEMBERS HOME PAGE ///////////////// */
.body-class-members h3 {
  text-transform: uppercase;
  font-weight: normal;
  padding-bottom: 10px;
  border-bottom: 1px dotted #5a5a4f;
  padding-right: 30px;
}
.body-class-members #leftcontent > div,
.body-class-members #rightcontent > div,
body:not(.body-public) #leftcontent > div,
body:not(.body-public) #rightcontent > div {
  border: 1px solid #5a5a4f;
  position: relative;
}
.body-class-members.body-root-home .weatherMini {
  position: absolute;
  right: 0;
  top: 0;
}
/* ///////////////////////////////// ///////////////  LOGIN PAGE ///////////////////////////////////// */
.body-loginpage #login {
  padding: 20px 20px;
  border: 2px solid #5a5a4f;
  text-align: center;
}
#login h3 {
  color: rgba(75, 76, 63, 0.8);
  text-transform: uppercase;
  margin-bottom: 30px;
}
#login .controls input.btn {
  display: inline-block;
  background: #4b4c3f;
  color: #fff;
  border: 1px solid;
  text-transform: uppercase;
  padding: 10px 18px;
  margin: 15px 5px;
  font-size: 14px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: 'Raleway', sans-serif;
}
#login .controls input.btn:hover {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 480px) {
  #login .controls input.btn {
    margin: 7px 0;
  }
}
/* ////////////////////// /////////////////// /////// NEWSBOX CMS HOMEPAGE //////////// ////////////// ///////  */
.newsbox a:link,
.newsbox a:visited,
.news-summary a.read-more:link,
.news-summary a.read-more:visited {
  background: #af7e09;
  color: #fff;
  border: 1px solid #af7e09;
  display: inline-block;
  text-transform: uppercase;
  padding: 10px 18px;
  margin: 15px 5px;
  font-size: 14px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: 'Raleway', sans-serif;
}
.newsbox a:link:hover,
.newsbox a:visited:hover,
.news-summary a.read-more:link:hover,
.news-summary a.read-more:visited:hover {
  color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .newsbox a:link,
  .newsbox a:visited,
  .news-summary a.read-more:link,
  .news-summary a.read-more:visited {
    margin: 7px 0;
  }
}
/* ////////////////////// /////////////////// /////// NEWS PHP FRONT-END ////////////// ////////////// ///////  */
.body-public .news-item {
  border-bottom: 1px dotted rgba(75, 76, 63, 0.8);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.body-public .news-item .media-heading {
  color: rgba(75, 76, 63, 0.8);
}
.body-public p.news-date {
  font-size: 12px;
}
.body-public .news-summary a.read-more {
  background: #5a5a4f;
  color: #fff;
  font-family: 'Dancing Script', cursive;
  font-size: 12px !important;
  padding: 5px 10px;
  text-transform: uppercase;
  margin-top: 20px;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/* ////////////////////////////// /////////////////////// //////////////////////////////// /////////////////////////// ////////////////////////// ///////////////////   MEMBERS PAGES BACKGROUNDS ETC ///////////////////// ////// ///////// ////////////////////// //////////////////////////////////////////// ///////////////////////////// //////////// */
.body-class-members,
body:not(.body-public) {
  background: #fff;
}
/* #container bg members and front-end system pages */
body[class*="php-"] #container,
.body-class-members #container,
body:not(.body-public) #container,
.body-class-opens #container,
.php-login #container,
.body-loginpage #container,
.php-news #container,
.php-competition #container,
.php-teelogin #container,
.php-visitoropen #container,
.php-sagepay #container,
body[class^='body-class-setcoursestatus'] #container,
.body-class-visitorbooking #container {
  background: url("https://bassetdown.designmode.intelligentgolf.co.uk/images/resources/bassetdown/admin_bg.jpg") top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  body[class*="php-"] #container,
  .body-class-members #container,
  body:not(.body-public) #container,
  .body-class-opens #container,
  .php-login #container,
  .body-loginpage #container,
  .php-news #container,
  .php-competition #container,
  .php-teelogin #container,
  .php-visitoropen #container,
  .php-sagepay #container,
  body[class^='body-class-setcoursestatus'] #container,
  .body-class-visitorbooking #container {
    background: #efefef;
    padding: 0 5px;
  }
}
/* home page cms wraps incorrectly */
body.body-class-members.body-root-home.body-nav-current-1.php-index #container,
body.php-whshcaprecord #container {
  padding-bottom: 0;
}
body.body-class-members.body-root-home.body-nav-current-1.php-index .footer,
body.php-whshcaprecord .footer {
  margin-top: 50px;
}
body.php-whshcaprecord .content-wrapper {
  min-height: calc(100vh - 50px);
}
/* members pages #globalwrap */
.body-class-members #globalwrap,
body:not(.body-public) #globalwrap,
.body-class-opens #globalwrap,
.php-login #globalwrap,
.body-loginpage #globalwrap,
.php-news #globalwrap,
.php-competition #globalwrap,
.php-teelogin #globalwrap,
.php-visitoropen #globalwrap,
.php-sagepay #globalwrap,
body[class^='body-class-setcoursestatus'] #globalwrap,
.body-class-visitorbooking #globalwrap {
  padding: 20px;
  margin: 60px 0px 0px 0px;
  background-color: rgba(255, 255, 255, 0.86);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* MEMBERS BOOKING PAGE */
body.body-class-members.body-root-roundmgmt\.php.body-nav-current-2.body-nav-current-has-2 #globalwrap {
  background: rgba(255, 255, 255, 0.83137255);
}
#globalwrap #global .tabs li.current a {
  background: #af7e09;
  border: none;
  color: #fff;
}
/* ///////////// ////////////// //////////// MEMBERS PAGES LOGO ///////////////////// //////  //////////// */
.body-class-members .footer,
body:not(.body-public) .footer,
.body-class-opens .footer,
.php-login .footer,
.body-loginpage .footer,
.php-news .footer,
.php-competition .footer,
.php-teelogin .footer,
.php-visitoropen .footer,
.php-sagepay .footer,
body[class^='body-class-setcoursestatus'] .footer,
.body-class-visitorbooking .footer {
  display: block;
}
/* ///////////// GENERIC TABLES - DO SPECIFIC STYLES FRONT-END TO OVERRIDE THESE /////////// ///////////  */
thead {
  background: rgba(75, 76, 63, 0.8);
  color: #fff;
}
.table th {
  font-weight: normal;
}
table thead a:link,
table thead a:visited {
  color: #fff;
  text-decoration: underline;
}
table thead a:hover {
  color: var(--highlightColor);
  text-decoration: none;
}
/* specific for new transparent background layout on globalwrap in cms*/
.php-slideshow_edit form fieldset {
  background: #f2f2f229 !important;
}
.php-slideshow_edit .upload_form {
  background: rgba(244, 244, 244, 0.03137255) !important;
}
.body-class-members .uploadTarget {
  border: 1px dashed #5a5a4f !important;
  background: #5a5a4f;
  color: #efefef;
}
.body-class-members .uploadTarget:hover {
  background: rgba(75, 76, 63, 0.8);
}
.php-slideshow_edit form fieldset legend {
  font-size: 16px;
  color: #000;
}
/* website templates page etc - styles / header page */
.adminWrapper form h1 {
  font-size: 20px;
  border-bottom: 1px dotted;
  text-transform: uppercase;
}
.body-class-members .adminWrapper {
  background: rgba(255, 255, 255, 0);
}
.body-class-members form fieldset {
  background: rgba(242, 242, 242, 0.27843137) !important;
}
.body-class-members .tabsWrapper .tabList li.current a span {
  border: none;
}
.body-class-members .tabsWrapper .tabList li.current a {
  background: rgba(75, 76, 63, 0.8);
  border-right: 1px solid #767676;
  color: #fff !important;
}
.body-class-members .breadcrumbsWrapper p.breadcrumbs a {
  color: #333 !important;
}
.body-class-members #globalwrap .adminWrapper form a,
.body-class-members #globalwrap .adminWrapper form table.admin a,
.body-class-members #globalwrap .adminWrapper .aboveTabs a {
  color: #333;
}
.body-class-members #globalwrap .adminWrapper div.tabsWrapper {
  border-right: none;
}
.body-class-members button#saveButton,
.body-class-members .fancybutton {
  background: #5e8848;
  border: none;
  color: #fff;
  margin-top: 15px;
}
.body-class-members #globalwrap .adminWrapper fieldset .links {
  background: none;
}
.body-class-members #globalwrap .adminWrapper .links a.fancybutton {
  color: #fff;
}
.body-class-members #globalwrap .adminWrapper form fieldset h3 {
  padding-bottom: 10px !important;
}
button.fff-icon.ui-button-icon-only {
  background: #ffffff63;
}
.body-class-members .tabsWrapper .tabList a {
  background: #333;
}
.body-class-members .tabsWrapper .tabList {
  background: none;
}
.body-class-members .tabsWrapper .tabList li a span {
  border-left: none;
  border-top: none;
  border-right: 1px solid #767676;
}
.body-class-members .tabsWrapper ul {
  padding-left: 0;
}
/* //////////////////////// // member page information menu in backend ////////////// //// */
.body-class-members.body-root-information .sliderHolder {
  display: none;
}
.body-class-members.body-root-information .inPageContent {
  margin-left: auto;
  padding: 20px;
  left: 0;
  right: 0;
  background: none;
  margin-right: auto;
  max-width: 100%;
}
/* pages like viewround.php , competition, twos etc on public */
.body-public.php-viewround #container,
.body-public.php-csscalc #container,
.body-public.php-twos #container {
  background: var(--systemAndMembersContainerBackground);
  background-size: cover;
  background-attachment: fixed;
  padding-top: 80px;
}
.body-public.php-viewround table,
.body-public.php-csscalc table,
.body-public.php-twos table {
  background: #fff;
}
.body-public.php-viewround div#rounds {
  background: rgba(255, 255, 255, 0.78);
  padding: 20px;
  margin-bottom: 40px;
}
.body-public.php-csscalc h4 {
  background: #5a5a4f;
  padding: 20px;
  color: #fff;
  font-weight: normal;
  display: inline-block;
}
/* /////////////////////// /////////// /////   ///////////////////////////// ////////////////////// /////////////////////////////////////// /PHP CK EDITOR ///////////////  ////////////////////////////// /// /////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///// /////////// //////////////////////////////////////  ////////////////////////////////// */
.ig-wysiwyg-editor-navbar .navbar-inverse .navbar-inner {
  background: rgba(75, 76, 63, 0.8);
}
/* //////////////////////// // member page information menu in backend ////////////// //// */
.body-root-information h1,
.body-root-information h2,
.body-root-information h3,
.body-root-information h4 {
  color: #333;
}
.body-root-information .sliderCaptions,
.body-root-information .sliderHolder,
.body-root-information .testimonials,
.body-root-information .addressFooter {
  display: none;
}
body.body-root-information h3 {
  border-bottom: none;
}
.body-root-information .inPageContent .container {
  max-width: 100%;
}
.body-class-members .inPageContent {
  margin-left: auto;
  padding: 20px;
  left: 0;
  right: 0;
  background: none;
  margin-right: auto;
  max-width: 100%;
}
.body-class-members .inPageContent p {
  color: #333;
}
body-class-members .inPageContent .sidebar img {
  width: 120px;
}
.body-class-members .inPageContent .sidebar {
  margin-top: 40px;
}
body.body-root-information #globalwrap {
  background-color: rgba(255, 255, 255, 0.95);
}
.body-class-members #leftcontent .members-mobile-scoreentry .well {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
@media (min-width: 768px) {
  #globalwrap #date_form .picker {
    position: relative;
    background: grey !important;
    padding: 30px 10px 10px 10px;
    text-align: right;
  }
  .body-class-visitorbooking.body-public img.ui-datepicker-trigger {
    top: 5px;
  }
}
/* //////// ///////////////////   .php-ckeditor styles  ///////// //// ////////////////// ////  */
.php-ckeditor h1,
.php-ckeditor h2,
.php-ckeditor h3,
.php-ckeditor h4,
.php-ckeditor h5,
.php-ckeditor h6 {
  color: #333;
  text-transform: none;
  border: none;
}
.php-ckeditor img {
  box-shadow: none;
}
.php-ckeditor p {
  color: #333;
}
.php-ckeditor #globalwrap {
  position: relative;
}
.php-ckeditor .pagesection .container {
  max-width: 100%;
}
.php-ckeditor #header img {
  margin: 0 20px;
}
@media (min-width: 980px) {
}
.php-ckeditor .addressFooter .sectionOne .socialBoxes .box {
  height: auto;
}
.php-ckeditor .addressFooter .sectionOne .socialBoxes .box h4 {
  position: relative;
  top: auto;
}
.php-ckeditor .middleSection {
  display: none !important;
}
.php-ckeditor .addressFooter .sectionTwo .right a.igLogo img {
  display: none;
}
.php-ckeditor .addressFooter .sectionOne {
  background: #babab6;
}
.php-ckeditor .sliderBoxes {
  position: relative;
  padding-top: 30px;
}
.php-ckeditor .sliderBoxes .box:after {
  display: none;
}
.php-ckeditor .sliderHolder:after {
  display: none;
}
.php-ckeditor .bigBlock .bottomSection p {
  color: #efefef;
}
.php-ckeditor .innerPage .titleRow {
  position: relative;
  top: auto;
}
.php-ckeditor .innerPage .titleRow h1 {
  color: #333;
}
.php-ckeditor .innerPage .titleRow .breadcrumbs,
.php-ckeditor .innerPage .titleRow .holeBreadcrumbs {
  display: none;
}
.php-ckeditor .innerPage .highlightBox:before,
.php-ckeditor .innerPage .highlightBox:after {
  display: none;
}
.php-ckeditor .innerPage .sidebar .picBox .iconAndText {
  position: relative;
  margin-top: 20px;
  top: auto;
  left: auto;
  transform: none;
}
.php-ckeditor .innerPage .sidebar .picBox .pic img {
  opacity: 1 !important;
}
.php-ckeditor .andyWeatherAndCourseStatusButton,
.php-ckeditor .andyShowWeatherAndCourseStatus,
.php-ckeditor .sliderHolder a.ct-btn-scroll.ct-js-btn-scroll {
  display: none;
}
.php-ckeditor .wysiwyg-editable table {
  width: 100%;
  margin-top: 50px;
}
.php-ckeditor .sliderHolder .sliderCaptions {
  position: relative;
  top: 20px;
  border: 1px dotted #333;
  padding: 20px 20px 40px 20px;
  max-width: 100% !important;
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
  background: none;
  color: #333;
  margin: 20px auto 40px auto;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  animation-duration: 0s;
  animation-delay: 0s;
  -o-animation-duration: 0s;
  -o-animation-delay: 0s;
  -moz-animation-duration: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-duration: 0s;
  -webkit-animation-delay: 0s;
  transform: none;
}
.php-ckeditor .sliderHolder .sliderCaptions h1,
.php-ckeditor .sliderHolder .sliderCaptions h2 {
  color: #333;
  text-shadow: none;
}
.php-ckeditor .inPageContent,
.php-ckeditor .sliderHolder,
.php-ckeditor .standardInclude,
.php-ckeditor .subMenu,
.php-ckeditor .holeNavigationRow,
.php-ckeditor .addressFooter,
.php-ckeditor .testimonials {
  margin-top: 20px;
  border: 1px dotted #333;
  padding: 20px;
  color: #fff;
  max-width: 100% !important;
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
  background: none;
  color: #333;
}
.php-ckeditor a.btn.btn-danger,
.php-ckeditor a.btn.btn-success {
  color: #fff;
  background: #ac433f;
}
.php-ckeditor a.btn.btn-primary.ajaxbutton {
  background: #af7e09;
  color: #fff;
  text-shadow: none;
  border: none;
}
.php-ckeditor a#wysiwyg_rich_button {
  background: #ac433f;
  color: #fff;
  text-shadow: none;
  border: none;
}
.php-ckeditor a#wysiwyg_html_button {
  background: #d2544f;
  color: #fff;
  text-shadow: none;
  border: none;
}
.php-ckeditor .holeStatsRow {
  position: relative;
}
.php-ckeditor .statContainer {
  color: #333;
}
.php-ckeditor .holeNavigation {
  width: 300px;
  margin: 0 auto;
}
.php-ckeditor .holeNav {
  position: initial;
  display: inline-block;
  padding: 10px;
  background: #fff;
  color: #fff !important;
}
.php-ckeditor .holeNavigationRow {
  position: relative;
  background: #5a5a4f;
  color: #fff;
}
.php-ckeditor .addressFooter {
  background: #5a5a4f;
}
.php-ckeditor .addressFooter .socialIcons em {
  padding: 10px 2px 10px 7px;
}
@media (max-width: 979px) {
  .php-ckeditor .navbar-fixed-top {
    margin-bottom: 0;
  }
}
/* -----------------------------  HOME PAGE SLIDER BOXES ----------------------------------------- */
.sliderBoxes {
  position: absolute;
  z-index: 11;
  display: flex;
  width: 70%;
  bottom: 0;
  margin: 0 auto;
  justify-content: space-evenly;
  left: 0;
  right: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sliderBoxes {
    justify-content: space-around;
  }
}
@supports (-webkit-hyphens:none) {
  .sliderBoxes {
    justify-content: space-between;
  }
}
@media (max-width: 979px) {
  .sliderBoxes {
    width: 100%;
  }
}
.sliderBoxes a,
.sliderBoxes .linkHolder {
  display: inherit;
}
.sliderBoxes .box {
  text-align: center;
  position: relative;
  width: 140px;
  padding: 40px 0 0 0;
}
@media (max-width: 480px) {
  .sliderBoxes .box {
    width: 100px;
    padding: 20px 0 0 0;
  }
}
.sliderBoxes .box:after {
  content: '';
  background: url(https://bassetdown.designmode.intelligentgolf.co.uk/images/resources/bassetdown/golfCircle.png) top center no-repeat;
  background-size: contain;
  width: 75px;
  height: 79px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translatex(-50%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 480px) {
  .sliderBoxes .box:after {
    width: 45px;
    height: 50px;
    top: -25px;
  }
}
.sliderBoxes .box h4 {
  color: #c9c9c9;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.sliderBoxes .box.boxOne {
  background: #737144;
}
.sliderBoxes .box.boxTwo {
  background: #335c64;
}
.sliderBoxes .box.boxTwo:after {
  background: url(https://bassetdown.designmode.intelligentgolf.co.uk/images/resources/bassetdown/eventsCircle.png) top center no-repeat;
  background-size: contain;
  top: -38px;
}
@media (max-width: 480px) {
  .sliderBoxes .box.boxTwo:after {
    top: -23px;
  }
}
.sliderBoxes .box.boxThree {
  background: #9c583f;
}
.sliderBoxes .box.boxThree:after {
  background: url(https://bassetdown.designmode.intelligentgolf.co.uk/images/resources/bassetdown/sunCircle.png) top center no-repeat;
  background-size: contain;
  top: -38px;
  width: 78px;
}
@media (max-width: 480px) {
  .sliderBoxes .box.boxThree:after {
    top: -24px;
  }
}
.sliderBoxes .box:hover:after {
  top: -50px;
}
.sliderBoxes .box:hover h4 {
  color: #fff;
}
/* ----------------------  HOME PAGE WHITE SECTION TOP -----------------------------  */
.whiteSection {
  padding: 50px 20px 80px 20px;
  text-align: center;
}
.whiteSection .animatedLinks {
  height: 55px;
}
.whiteSection .animatedLinks a {
  color: #4b4c3f;
  display: inline-block;
  margin: 20px 10px 0 10px;
  position: relative;
  padding: 3px 5px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  background: none;
}
@media (max-width: 480px) {
  .whiteSection .animatedLinks a {
    margin-top: 30px;
  }
}
.whiteSection .animatedLinks a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #af7e09;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.whiteSection .animatedLinks a:hover {
  color: #af7e09;
}
.whiteSection .animatedLinks a:hover:after {
  bottom: 100%;
}
.whiteSection .textBoxes {
  display: flex;
  text-align: justify;
  justify-content: center;
}
@media (max-width: 480px) {
  .whiteSection .textBoxes {
    text-align: center;
    flex-direction: column;
  }
}
.whiteSection .textBoxes div {
  padding: 25px;
  width: 320px;
}
@media (max-width: 480px) {
  .whiteSection .textBoxes div {
    padding: 20px 10px 0 10px;
    width: 100%;
  }
}
/* -------------------------------  START OF BIG BLOCKS ON HOMEPAGE STYLES -------------------------------------  */
.bigBlock .topSection {
  display: flex;
}
@media (max-width: 767px) {
  .bigBlock .topSection {
    flex-direction: column-reverse;
  }
}
.bigBlock .topSection .left,
.bigBlock .topSection .right {
  width: 50%;
}
@media (max-width: 767px) {
  .bigBlock .topSection .left,
  .bigBlock .topSection .right {
    width: 100%;
  }
}
.bigBlock .topSection .text {
  background: #e3e3da;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 100px;
}
@media (max-width: 1199px) {
  .bigBlock .topSection .text {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .bigBlock .topSection .text {
    padding: 50px 40px 70px 40px;
  }
}
.bigBlock .topSection .text .innerText {
  max-width: 700px;
}
.bigBlock .topSection .text h4 {
  color: #737144;
}
.bigBlock .topSection .text .animatedLinks a {
  color: #4b4c3f;
  display: inline-block;
  margin: 20px 10px 0 10px;
  position: relative;
  padding: 3px 5px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  background: none;
}
@media (max-width: 480px) {
  .bigBlock .topSection .text .animatedLinks a {
    margin-top: 30px;
  }
}
.bigBlock .topSection .text .animatedLinks a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #af7e09;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.bigBlock .topSection .text .animatedLinks a:hover {
  color: #af7e09;
}
.bigBlock .topSection .text .animatedLinks a:hover:after {
  bottom: 100%;
}
.bigBlock .topSection .pic {
  display: flex;
}
.bigBlock .topSection .pic img {
  width: 100%;
  object-fit: cover;
  object-position: 90% 50%;
}
.bigBlock .middleSection {
  position: relative;
}
.bigBlock .middleSection img {
  position: absolute;
  width: 350px;
  top: -177px;
  left: 25%;
  transform: translatex(-50%);
}
@media (max-width: 979px) {
  .bigBlock .middleSection img {
    top: -52px;
    width: 100px;
  }
}
.bigBlock .bottomSection {
  display: flex;
  min-height: 350px;
}
.bigBlock .bottomSection h1,
.bigBlock .bottomSection h2,
.bigBlock .bottomSection h3,
.bigBlock .bottomSection h4 {
  text-transform: uppercase;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1.5px;
}
.bigBlock .bottomSection h1 {
  font-weight: bold;
  font-size: 22px;
}
.bigBlock .bottomSection h3 {
  font-weight: bold;
  color: #b79441;
  font-size: 15px;
}
.bigBlock .bottomSection h4 {
  line-height: 25px;
  margin-top: 20px;
  margin-bottom: 7px;
  font-weight: bold;
  text-transform: none;
  font-size: 14px;
}
.bigBlock .bottomSection p {
  margin-bottom: 0;
}
.bigBlock .bottomSection .animatedLinks a {
  color: #4b4c3f;
  display: inline-block;
  margin: 20px 10px 0 10px;
  position: relative;
  padding: 3px 5px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  background: none;
  color: #fff;
}
@media (max-width: 480px) {
  .bigBlock .bottomSection .animatedLinks a {
    margin-top: 30px;
  }
}
.bigBlock .bottomSection .animatedLinks a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #af7e09;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.bigBlock .bottomSection .animatedLinks a:hover {
  color: #af7e09;
}
.bigBlock .bottomSection .animatedLinks a:hover:after {
  bottom: 100%;
}
@media (max-width: 767px) {
  .bigBlock .bottomSection.inBlockTwo {
    flex-direction: column;
  }
}
.bigBlock .bottomSection.inBlockTwo .left,
.bigBlock .bottomSection.inBlockTwo .right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 50px 20px;
  color: #fff;
}
@media (max-width: 979px) {
  .bigBlock .bottomSection.inBlockTwo .left,
  .bigBlock .bottomSection.inBlockTwo .right {
    display: block;
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .bigBlock .bottomSection.inBlockTwo .left,
  .bigBlock .bottomSection.inBlockTwo .right {
    width: 100%;
  }
}
.bigBlock .bottomSection.inBlockTwo .left,
.bigBlock .bottomSection.inBlockTwo .right {
  background: #737144;
}
@media (max-width: 480px) {
  .bigBlock .bottomSection.inBlockTwo .left,
  .bigBlock .bottomSection.inBlockTwo .right {
    text-align: center;
  }
}
.bigBlock .bottomSection.inBlockTwo .left .innerLeft,
.bigBlock .bottomSection.inBlockTwo .right .innerLeft {
  width: 45%;
  padding-right: 40px;
  padding-left: 30px;
}
@media (max-width: 979px) {
  .bigBlock .bottomSection.inBlockTwo .left .innerLeft,
  .bigBlock .bottomSection.inBlockTwo .right .innerLeft {
    width: 100%;
  }
}
.bigBlock .bottomSection.inBlockTwo .left .innerRight,
.bigBlock .bottomSection.inBlockTwo .right .innerRight {
  width: 55%;
  padding: 40px 30px;
}
.bigBlock .bottomSection.inBlockTwo .left .innerRight div,
.bigBlock .bottomSection.inBlockTwo .right .innerRight div {
  display: inline-block;
  width: 49%;
}
@media (min-width: 980px) and (max-width: 1499px) {
  .bigBlock .bottomSection.inBlockTwo .left .innerRight div,
  .bigBlock .bottomSection.inBlockTwo .right .innerRight div {
    display: block;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .bigBlock .bottomSection.inBlockTwo .left .innerRight div,
  .bigBlock .bottomSection.inBlockTwo .right .innerRight div {
    display: block;
    width: 100%;
  }
}
@media (max-width: 979px) {
  .bigBlock .bottomSection.inBlockTwo .left .innerRight,
  .bigBlock .bottomSection.inBlockTwo .right .innerRight {
    width: 100%;
  }
}
.bigBlock .bottomSection.inBlockTwo .right {
  background: #817f57;
}
@media (min-width: 980px) {
  .bigBlock .bottomSection.inBlockTwo .right .innerLeft {
    width: 60%;
  }
}
.bigBlock .bottomSection.inBlockTwo .right .innerRight div {
  width: 100%;
}
.bigBlock.blockThree .topSection .text {
  background: #d6dee0;
}
.bigBlock.blockThree .topSection .text h4 {
  color: #335c64;
}
.bigBlock.blockThree .topSection .text .animatedLinks a:after {
  background: #335c64;
}
.bigBlock.blockThree .middleSection img {
  left: auto;
  right: 25%;
  transform: translatex(50%);
}
.bigBlock.blockThree .bottomSection {
  background: #335c64;
  display: block;
  padding: 60px 0 80px 0;
}
@media (max-width: 979px) {
  .bigBlock.blockThree .bottomSection {
    padding: 60px 20px 20px 20px;
  }
}
@media (max-width: 480px) {
  .bigBlock.blockThree .bottomSection {
    text-align: center;
  }
}
.bigBlock.blockThree .bottomSection h1 {
  margin-top: 0;
  margin-bottom: 75px;
  text-align: center;
}
@media (max-width: 480px) {
  .bigBlock.blockThree .bottomSection h1 {
    margin-bottom: 35px;
  }
}
.bigBlock.blockThree .bottomSection h3 {
  color: #fff;
  margin-top: 0;
}
.bigBlock.blockThree .bottomSection h4 {
  display: inline-block;
  position: relative;
  padding-top: 10px;
  font-size: 16px;
  letter-spacing: 2px;
}
.bigBlock.blockThree .bottomSection h4:before {
  position: absolute;
  content: '';
  width: 40px;
  height: 2px;
  left: 0;
  top: 0;
  background: #af7e09;
}
.bigBlock.blockThree .bottomSection p {
  color: #adb9bc;
}
.bigBlock.blockThree .bottomSection img {
  float: left;
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .bigBlock.blockThree .bottomSection img {
    margin-right: 20px;
    width: 90px;
    margin-bottom: 90px;
  }
}
@media (max-width: 979px) {
  .bigBlock.blockThree .bottomSection img {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .bigBlock.blockThree .bottomSection img {
    width: 140px;
    display: block;
    float: none;
    margin: 0 auto 30px auto;
  }
}
.bigBlock.blockFour .topSection .text {
  background: #ebded9;
}
.bigBlock.blockFour .topSection .text h4 {
  color: #9c583f;
}
.bigBlock.blockFour .topSection .text .animatedLinks a:after {
  background: #9c583f;
}
.bigBlock.blockFour .bottomSection {
  background: #9c583f;
  text-align: center;
  color: #fff;
  padding: 80px 0 70px 0;
}
@media (max-width: 979px) {
  .bigBlock.blockFour .bottomSection {
    padding: 80px 20px 70px 20px;
  }
}
.bigBlock.blockFour .bottomSection h2 {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  line-height: 28px;
}
@media (max-width: 767px) {
  .bigBlock.blockFour .bottomSection h2 {
    margin-bottom: 10px;
  }
}
.bigBlock.blockFour .bottomSection p {
  padding: 0 20px 30px 20px;
}
@media (max-width: 979px) {
  .bigBlock.blockFour .bottomSection p {
    padding: 0 0 40px 0;
  }
}
/* --------------------------   START OF LATEST NEWS HOMEPAGE -------------------------------  */
.whiteSection.latestNews .news-item {
  border: none;
  margin-top: 30px;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 767px) {
  .whiteSection.latestNews .news-item {
    text-align: center;
  }
}
.whiteSection.latestNews .news-item .news-summary a.read-more {
  background: none;
  font-family: 'Raleway', sans-serif;
  border: none;
  color: #af7e09;
  padding: 0;
  margin: 20px 0 0 0;
}
.whiteSection.latestNews .news-item .news-summary a.read-more:hover {
  text-decoration: underline;
}
.whiteSection.latestNews .news-item .media-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
}
/* ----------------------------------  INNER PAGE STYLES -----------------------------------------  */
.innerSliderHolder h1 {
  position: absolute;
  bottom: 50px;
  z-index: 999;
  color: #fff;
  left: 50px;
  font-family: 'Raleway', sans-serif;
}
.innerPage {
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .innerPage {
    padding: 0 20px 0 20px;
  }
}
@media (min-width: 768px) {
  .innerPage .row-fluid:nth-of-type(2) {
    display: flex;
  }
}
.innerPage .titleRow .span12 {
  min-height: 0;
}
.innerPage .mainContent {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .innerPage .mainContent {
    padding-bottom: 40px;
  }
}
.innerPage .mainContent img {
  max-width: 100%;
}
.innerPage a {
  color: #af7e09;
}
.innerPage a:hover {
  color: #737144;
}
.innerPage h5 a {
  color: #4b4c3f;
  display: inline-block;
  margin: 20px 10px 0 10px;
  position: relative;
  padding: 3px 5px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  background: none;
  line-height: 28px;
  margin: 0 15px 15px 0;
  padding: 3px 0;
}
@media (max-width: 480px) {
  .innerPage h5 a {
    margin-top: 30px;
  }
}
.innerPage h5 a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #af7e09;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.innerPage h5 a:hover {
  color: #af7e09;
}
.innerPage h5 a:hover:after {
  bottom: 100%;
}
.innerPage h2 {
  color: #4b4c3f;
  font-size: 28px;
  font-family: 'Raleway', sans-serif;
  margin: 20px 0;
}
.innerPage h3 {
  color: #737144;
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
}
.innerPage h4 {
  color: #4b4c3f;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 32px;
  margin: 25px 0;
  letter-spacing: 1px;
}
.innerPage .titleRow {
  position: absolute;
  top: -150px;
  color: #fff;
  z-index: 9;
}
@media (max-width: 767px) {
  .innerPage .titleRow {
    padding-right: 40px;
    top: -120px;
  }
}
.innerPage .titleRow h1 {
  color: #fff;
}
@media (max-width: 767px) {
  .innerPage .titleRow h1 {
    line-height: 36px;
    margin-top: 0;
  }
}
.innerPage .titleRow .breadcrumbs {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.43);
}
.innerPage .titleRow .breadcrumbs:first-letter {
  opacity: 0;
  margin-left: -9px;
}
.innerPage .highlightBox {
  background: #737144;
  position: relative;
  margin: 50px 0;
  text-align: center;
  padding: 20px;
  color: #fff;
}
.innerPage .highlightBox:before,
.innerPage .highlightBox:after {
  content: '';
  background: #737144;
  height: 100%;
  width: 800px;
  right: 100%;
  top: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .innerPage .highlightBox:before,
  .innerPage .highlightBox:after {
    display: none;
  }
}
.innerPage .highlightBox:after {
  right: auto;
  left: 100%;
  width: 200px;
  z-index: -1;
}
.innerPage .highlightBox h2 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.innerPage .highlightBox h3 {
  color: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  text-transform: uppercase;
}
.innerPage .highlightBox h4 {
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  line-height: 24px;
  margin: 5px 0;
  letter-spacing: 1.5px;
}
.innerPage .highlightBox .content {
  display: flex;
  justify-content: space-around;
  max-width: 100%;
}
.innerPage .highlightBox .content.normal {
  display: block;
}
@media (max-width: 767px) {
  .innerPage .highlightBox .content {
    flex-direction: column;
  }
}
.innerPage .highlightBox .bottom {
  color: rgba(255, 255, 255, 0.32);
  margin-top: 40px;
  font-size: 12px;
}
.innerPage .indentText {
  color: #8c8d80;
  position: relative;
  padding: 60px 100px 50px 120px;
}
@media (max-width: 480px) {
  .innerPage .indentText {
    padding: 40px 0 20px 50px;
  }
}
.innerPage .indentText:before {
  content: '';
  background: url(https://bassetdown.designmode.intelligentgolf.co.uk/images/resources/bassetdown/indentCircles.png) top left no-repeat;
  background-size: contain;
  width: 53px;
  height: 106px;
  position: absolute;
  top: 50px;
  left: 15px;
}
@media (max-width: 480px) {
  .innerPage .indentText:before {
    width: 30px;
    height: 66px;
    top: 30px;
    left: 0;
  }
}
.innerPage .indentText h2 {
  font-size: 16px;
  line-height: 26px;
}
.innerPage .sidebar {
  background: #f1f0ec;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .innerPage .sidebar {
    text-align: center;
  }
}
.innerPage .sidebar .sidebarContentBox {
  padding: 0 40px;
}
.innerPage .sidebar h3 {
  color: #4b4c3f;
  font-size: 18px;
  line-height: 28px;
}
.innerPage .sidebar h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #737144;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 1px;
}
.innerPage .sidebar .weather {
  margin: 40px 0 60px 0;
}
.innerPage .sidebar .voucher {
  margin-bottom: 60px;
}
.innerPage .sidebar .picBox {
  position: relative;
  margin-bottom: 30px;
}
.innerPage .sidebar .picBox .pic img {
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.innerPage .sidebar .picBox .iconAndText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.innerPage .sidebar .picBox .iconAndText h4 {
  text-transform: none;
  color: #4b4c3f;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.innerPage .sidebar .picBox:hover .iconAndText h4 {
  color: #af7e09;
}
.innerPage .sidebar .picBox:hover .pic img {
  opacity: 0.1;
}
.underContentPic img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
.whiteSection.underContent h4 {
  color: #4b4c3f;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.whiteSection.underContent h3 {
  font-size: 42px;
  color: #737144;
  margin-bottom: 40px;
}
.whiteSection.underContent a {
  color: #4b4c3f;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
  padding: 10px 40px;
  display: inline-block;
}
@media (max-width: 1199px) {
  .whiteSection.underContent a {
    padding: 10px;
  }
}
.whiteSection.underContent a:hover {
  color: #af7e09;
}
/* ---------------------------  HOLE PAGE STYLES ---------------------------------------------------------  */
.holePage .holeBreadcrumbs {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.43);
}
.holePage .mainContent {
  padding-bottom: 0;
}
.holePage .holeParams {
  border-bottom: 1px solid #cdcdc7;
  margin-bottom: 50px;
}
.holePage .holeParams table {
  text-align: left;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .holePage .holeParams table {
    text-align: center;
  }
}
.holePage .holeParams table thead {
  background: none;
  color: #8c8d80;
  text-transform: uppercase;
  font-size: 13px;
}
.holePage .holeParams table thead th {
  border: none;
  text-align: left;
  padding: 5px 0;
}
@media (max-width: 480px) {
  .holePage .holeParams table thead th {
    font-size: 10px;
    padding: 2px 0 !important;
  }
}
.holePage .holeParams table td {
  border: none;
  color: #4b4c3f;
  font-size: 20px;
  font-weight: bold;
  padding: 0;
}
@media (max-width: 979px) {
  .holePage .holeParams table td {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .holePage .holeParams table td {
    font-size: 11px;
  }
}
.holePage h4 {
  color: #8c8d80;
  font-size: 15px;
}
@media (min-width: 481px) {
  .holePage .indentText {
    padding: 60px 120px 30px 100px;
  }
}
@media (min-width: 481px) and (max-width: 979px) {
  .holePage .indentText {
    padding-right: 80px;
  }
}
.holePage .holeGalleryPics img {
  width: 100%;
  max-width: 100%;
  margin: 10px 0;
}
.holePage .holeGalleryPics img:nth-of-type(2) {
  margin-right: 1%;
}
.holePage .holeGalleryPics img:nth-of-type(2),
.holePage .holeGalleryPics img:last-of-type {
  width: 49%;
  display: inline-block;
}
@media (max-width: 480px) {
  .holePage .holeGalleryPics img:nth-of-type(2),
  .holePage .holeGalleryPics img:last-of-type {
    width: 100%;
    display: block;
    margin-right: 0;
  }
}
.holePage .holeNav {
  background: #d8d7ca;
  margin: -40px 0 70px 0;
  padding: 60px 35px 40px 35px;
}
@media (max-width: 480px) {
  .holePage .holeNav {
    padding: 60px 20px 40px 20px;
  }
}
.holePage .holeNav h2 {
  margin-top: 0;
}
.holePage .holeNav h4 {
  margin-top: 10px;
}
.holePage .holeNav .holeLinks a {
  color: #737144;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  padding: 8px 35px 8px 0;
}
.holePage .holeNav .holeLinks a:hover {
  color: #af7e09;
}
@media (min-width: 980px) and (max-width: 1199px) {
  .holePage .holeNav .holeLinks a {
    padding-right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .holePage .holeNav .holeLinks a {
    width: 45%;
    padding: 5px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .holePage .holeNav .holeLinks a {
    width: 30%;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .holePage .holeNav .holeLinks a {
    width: 32%;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .holePage .sidebar {
    margin-top: 40px;
  }
}
/* ---------------------------  MEMBER PAGE STYLES - COMES AFTER CUSTOM STYLRS ----------------------------  */
@media (min-width: 980px) {
  .body-public .memberPage {
    padding-top: 120px;
  }
}

/* anton styles */

.sidebarContentBox.picBox .iconAndText img {
  display: none;
}

.body-public .accordion-one, .body-public .accordion-two, .body-public .accordion-three, .body-public .accordion-four, .body-public .accordion-five, .body-public .accordion-six {
  display: none;
}

.accordion-section div[id*="accordion-toggle"] h2 {
  color: #4b4c3f;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  background: none;
  line-height: 28px;
  margin: 0 15px 15px 0;
  padding: 3px 0;
  display: inline-block;
}

.accordion-section div[id*="accordion-toggle"] h2::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #af7e09;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.accordion-section div[id*="accordion-toggle"] h2:hover::before {
  bottom: 100%;
}

.accordion-section div[id*="accordion-toggle"] h2 br {
  display: none;
}

.accordion-section div[id*="accordion-toggle"] h2:hover {
  cursor: pointer;
  color: #af7e09;
}

.accordion-section div[id*="accordion-toggle"] h2::after {
    content: '\f067';
    font-family: 'FontAwesome';
    margin-left: 10px;
  font-size: 10px;
}

.accordion-section div[id*="accordion-toggle"].open h2::after {
  content: '\f068';
}

.innerPage .highlightBox h3 {
  color: white;
}

.innerPage .highlightBox .bottom {
  color: white;
}

.innerPage .highlightBox a {
  color: #ffe29e;
}

.innerPage .highlightBox a:hover, .innerPage .highlightBox a:focus {
  color: #000;
}

.inner-full-width {
  padding: 70px 0px;
  text-align: center;
  line-height: 28px;
}

.row-fluid.no-flex {
  display: block;
  margin-top: 50px;
}

.inner-full-section {
  margin-top: 50px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .last-col {
    margin-top: 35px;
  }
}

.sliderHolder .nivo-caption {
  font-family: 'Raleway', sans-serif;
}

.header-amber-banner {
  position: fixed;
  top: 60px;
  left: 0px;
  padding: 6px 0px;
  background: #af7e09;
  z-index: 30;
  color: #fff;
  text-align: center;
  width: 100%;
  display: none;
  border-top: 1px solid #fff;
}

.body-root-events .header-amber-banner {
  display: block;
}

.body-root-events .hab-home-rest {
  display: none;
}

.body-class-home.body-public .header-amber-banner {
  display: block;
}

.body-class-home.body-public .hab-events {
  display: none;
}

.body-class-eat_and_drink .header-amber-banner {
  display: block;
}

.body-class-eat_and_drink .hab-events {
  display: none;
}

.header-amber-banner i {
  margin-right: 6px;
}

@media (min-width: 0px) and (max-width: 979px) {
  .header-amber-banner {
    position: relative;
    top: 0px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .socialBoxes .boxOne {
    margin: 0px auto;
  }
}

.bigBlock.blockThree .bottomSection.inBlockThree {
  text-align: center;
}

.bigBlock.blockThree .bottomSection img {
  float: none;
  margin-right: 0px;
  margin-bottom: 15px;
}

.bigBlock .bottomSection.inBlockFour .animatedLinks a:hover {
  color: #83ebff;
}

.addressFooter .sectionOne {
  text-align: center;
}

.addressFooter .sectionOne .socialBoxes .box {
  margin: 0px auto;
}

.innerPage .highlightBox .bottom {
  font-size: 14px;
}

.body-class-members h1, .body-class-members h2, .body-class-members h3, .body-class-members h4, .body-class-members h5, .body-class-members h6 {
  font-family: 'Raleway', sans-serif;
}

.image-tweaker img {
  margin-right: 10px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .image-tweaker img {
    margin: 6px auto;
    display: block;
  }
  .holePage .holeParams table thead th {
    text-align: center;
  }
  .holePage .holeParams table tbody td {
    text-align: center;
  }
  .bigBlock.blockThree .bottomSection img {
    margin-right: auto;
  }
  .inBlockFour .animatedLinks {
    margin-bottom: 30px;
  }
  .bigBlock .bottomSection.inBlockFour .animatedLinks a {
    margin-top: 0px;
  }
  .bigBlock.blockFour .bottomSection p {
    padding-bottom: 20px;
  }
}

@media (min-width: 0px) and (max-width: 1199px) {
  .accordion-section div[id*="accordion-toggle"] h2:hover::before {
    bottom: 0%;
  }
  .accordion-section div[id*="accordion-toggle"].open h2::before {
    bottom: 100%;
  }
  .bigBlock.blockThree .bottomSection img {
    width: auto;
  }
}

.inPageContent form .customFormLine input[type*="checkbox"] {
  margin: 0px 0px 2px;
}

/* visitor tee login */

@media (min-width: 768px) {
  .php-teelogin #globalwrap .row {
    width: 100%;
    margin-left: 0px;
  }
  .php-teelogin #globalwrap .row .span6:first-child {
    width: 48%;
    margin-left: 0px;
  }
  .php-teelogin #globalwrap .row .span6:last-child {
    width: 48%;
    margin-left: 2%;
  }
}

.teebooking #paymentbar {
  float: none;
  text-align: right;
  width: auto;
}

@media (min-width: 0px) and (max-width: 767px) {
  .teebooking #paymentbar {
    margin-top: 15px;
    text-align: left;
  }
  .teebooking #cancelbar {
    float: none;
  }
}

.invalid-page {
  margin-top: 120px;
}

#login h3 {
  font-family: 'Raleway', sans-serif;
}

.body-public[class*="php-"] h1, .body-public[class*="php-"] h2, .body-public[class*="php-"] h3, .body-public[class*="php-"] h4, .body-public[class*="php-"] h5, .body-public[class*="php-"] h6 {
  font-family: 'Raleway', sans-serif;
}

.hide-price-page .prices .price {
  display: none;
}

.header-amber-banner a {
  color: #fff;
  text-decoration: underline;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.header-amber-banner a:hover {
  opacity: 0.7;
}

.no-fade-page.innerPage .sidebar .picBox .pic img {
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
}

.less-fade-page.innerPage .sidebar .picBox .pic img {
  opacity: 0.7;
  -khtml-opacity: 0.7;
  -moz-opacity: 0.7;
}

.less-fade-page .sidebar .picBox a {
  color: #ffb400;
  text-shadow: 1px 1px #000;
}

.body-root-golf .header-amber-banner {
  display: block;
}

.body-root-golf .header-amber-banner .hab-events {
  display: none;
}

.body-class-whats_on .header-amber-banner {
  display: block;
}

.body-class-whats_on .header-amber-banner .hab-events {
  display: none;
}

@media (min-width: 0px) and (max-width: 767px) {
  .sidebarContentBox img {
    width: 100%;
    max-width: 300px;
  }
}

.body-public #header .navbar-inner #nav li.nav-menu-visitor_index {
  display: none;
}

/*.home-modal {
  background: rgba(0,0,0,0.6);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10020;
  width: 100%;
  height: 100vh;
  top: -100vh;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.remove-modal .home-modal {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.home-modal-body {
  max-width: 500px;
  background: #fff;
  border-radius: 8px;
  margin: 10px auto;
  padding: 20px;
  height: calc(100vh - 60px);
  overflow-y: scroll;
}

@media (min-height: 800px) {
  .home-modal-body {
    height: 790px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .home-modal-body {
    max-width: 450px;
  }
}

.home-modal-close:hover {
  cursor: pointer;
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .home-modal-body {
    max-width: 300px;
  }
}
*/
/* end anton styles */

.body-class-members .innerPage .highlightBox::before {
    background: none;
}

/*New CSS Modal*/
.modal2 {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0;
  max-width: fit-content;
}

@media (min-width: 768px) {
.modal2 {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: fit-content;
    margin: auto;
}
.modal2 .modal-body {
    /*max-height: 50%;*/
    max-height: calc( 80vh - 40px);
  }
    .modal2 .modal-body img {
    max-height: calc( 76vh - 40px);
  }
}

@media (min-width: 979px) {
.modal2 {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: fit-content;
    margin: auto;
}
.modal2 .modal-body {
    /*max-height: 50%;*/
	max-height: calc( 80vh - 40px);
  }
     .modal2 .modal-body img {
    max-height: calc( 76vh - 40px);
  }
}
  
@media (min-width: 1200px) {
.modal2 {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: fit-content;
    margin: auto;
}
.modal2 .modal-body {
    /*max-height: 50%;*/
    max-height: calc( 80vh - 40px);
  }
    .modal2 .modal-body img {
    max-height: calc( 76vh - 40px);
  }
}
  
@media (min-width: 1500px) {
.modal2 {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: fit-content;
    margin: auto;
}
.modal2 .modal-body {
    /*max-height: 80%;*/
	max-height: calc( 80vh - 40px);
  }
    .modal2 .modal-body img {
    max-height: calc( 76vh - 40px);
  }
}

.modal2 .modal-body video {
max-height: calc( 76vh - 40px);
  display:block;
    margin: auto;
  }
/* End Modal */