/* anton styles */

/* fonts */

.raleway-font {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.crimson-text-regular {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

.crimson-text-semibold {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: normal;
}

.crimson-text-bold {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
}

.crimson-text-regular-italic {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: italic;
}

.crimson-text-semibold-italic {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: italic;
}

.crimson-text-bold-italic {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: italic;
}

.cinzel-font {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* variables */

:root {
  --bodyfont: 'Raleway', sans-serif;
  --headingfont: 'Crimson Text', serif;
  --landingfont: 'Cinzel', serif;
  --headingcolor: #0E3F68;
  --headingcolor2: #0E3F68;
  --highlightcolor: #282828;
  --highlighthovercolor: #aaa;
  --bodycolor: #282828;
  --headerbg: #fff;
  --subheaderbg: #0E3F68;
  --footerbg: #0E3F68;
  --footertext: #fff;
  --navbg: rgba(14,63,104,1);
  --navlink: #fff;
  --navactivelink: #a48c6a;
  --dropdownbg: transparent;
  --dropdownlink: #fff;
  --dropdownlinkactive: #A26A2F;
  --scorecardwhite: #f8f8f8;
  --scorecardyellow: #f2f200;
  --scorecardred: #C13535;
  --scorecardblue: #1A2542;
  --pagebg: #fff;
  --altpagebg: #EFEEEE;
}

.CodeMirror-wrap .CodeMirror-scroll {
  height: 600px;
}

.content-wrapper {
  line-height: 28px;
}

.body-public .nav > li.nav-menu-login\.php {
  display: none;
}

.body-public .nav > li.nav-menu-competition\.php, .body-public .nav > li.nav-menu-competition2\.php {
  display: none;
}

/* general styles */

body {
  font-size: 16px;
  font-family: var(--bodyfont);
  color: var(--bodycolor);
  overflow-x: hidden;
}

h1 {
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  color: var(--headingcolor);
  margin-bottom: 30px;
  font-family: var(--headingfont);
}

h2 {
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h3 {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  color: var(--headingcolor2);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--headingcolor);
  margin-bottom: 20px;
  font-family: var(--headingfont);
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--headingcolor2);
  margin-bottom: 20px;
}

h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--headingcolor2);
  font-family: var(--headingfont);
}

h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: linear-gradient(to left, var(--headingcolor) 50%, var(--navactivelink) 50%) right;
  background-size: 200% 100%;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 12px;
  margin-top: 10px;
  position: relative;
}

.inner-page-wrapper h5 a {
  text-decoration: none;
}

.content-wrapper h5 a:hover, .content-wrapper h5 a:focus, .gallery-image .ss-controls a:hover, .gallery-image .ss-controls a:focus, .gallery-image .nav-controls a:hover, .gallery-image .nav-controls a:focus {
  background-position: left;
  color: #fff;
  text-decoration: none;
}

a {
  color: var(--highlightcolor);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

a:hover, a:focus {
  color: var(--headingcolor);
  text-decoration: none;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* header */

.header-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1001;
  min-height: 110px;
  width: 100%;
  background: var(--headerbg);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.header-logo {
  position: absolute;
  top: 10px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 80px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

/* navbar */

#hamburger-icon {
  position: absolute;
  top: 20px;
  right: 83px;
  width: 70px;
  height: 70px;
  border: none;
  z-index: 20;
  background: transparent;
  border-radius: 0px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

#hamburger-icon:hover {
  background: transparent;
}

#hamburger-icon .line {
  height: 2px;
  background: var(--headingcolor);
  left: auto;
  right: 17px;
  width: 35px;
  position: absolute;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

#hamburger-icon:hover .line {
  color: #fff;
}

#hamburger-icon .line-1 {
  top: 24px;
  width: 30px;
}

#hamburger-icon .line-2 {
  top: 35px;
  width: 35px;
  opacity: 1;
}

#hamburger-icon .line-3 {
  top: 46px;
  width: 39px;
  width: 30px;
}

.show-menu #hamburger-icon .line-1 {
  top: 35px;
  transform: rotate(45deg);
}

.show-menu #hamburger-icon .line-2 {
  opacity: 0;
}

.show-menu #hamburger-icon .line-3 {
  top: 35px;
  transform: rotate(-45deg);
}

#myNavbar {
  position: fixed;
  top: 0px;
  right: -50%;
  min-height: calc(100vh - 110px);
  background: #fff;
  width: 50%;
  margin-top: 110px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.show-menu #myNavbar {
  right: 0px;
}

.nav-wrapper {
  margin-top: 10px;
  padding: 12px 30px 30px;
  height: calc(100vh - 305px);
  overflow-y: auto;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.fix .nav-wrapper {
  margin-top: 80px;
}

.navbar {
  margin: 0px;
}

.navbar .nav {
  float: none;
  margin: 0px;
}

.navbar .nav > li {
  float: none;
}

.navbar-inverse .nav > li > a {
  color: var(--headingcolor);
  position: relative;
  font-size: 26px;
  font-weight: 600;
  line-height: 34px;
  text-transform: capitalize;
  text-shadow: none;
  font-family: var(--headingfont);
}

.navbar-inverse .nav > li > a:hover, .navbar-inverse .nav > li > a:focus, .navbar-inverse .nav > li.current > a {
  color: var(--navactivelink);
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  background: transparent;
  color: var(--navactivelink);
  box-shadow: none;
}

.dropdown-menu {
  position: relative;
  background: var(--dropdownbg);
  border: none;
  box-shadow: none;
  float: none;
  margin: 0px 10px;
  border-radius: 0px;
}

.navbar .nav > li > .dropdown-menu::before, .navbar .nav > li > .dropdown-menu::after {
  display: none;
}

.dropdown-menu > li > a {
  color: var(--headingcolor);
  padding: 9px 20px;
  font-weight: 600;
  font-size: 20px;
  font-family: var(--headingfont);
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > li.current > a {
  background: transparent;
  color: var(--navactivelink);
}

.nav-logo {
  position: absolute;
  bottom: 20px;
  left: 0px;
  right: 0px;
  width: 100px;
  margin: 0px auto;
  text-align: center;
}

/* home footer */

.home-footer {
  background: var(--footerbg);
  padding: 20px 0px;
  color: #fff;
}

.hf-flex {
  display: flex;
  font-size: 16px;
}

.hff-logo {
  width: 100px;
  flex-shrink: 0;
}

.hff-club {
  font-weight: 500;
  font-family: var(--headingfont);
  margin-left: 100px;
  font-size: 30px;
  margin-top: 40px;
  width: 33%;
}

.hff-contact {
  margin: 33px 40px 0px;
  width: 17%;
}

.hff-contact p {
  margin: 0px;
}

.hff-contact a {
  color: #fff;
}

.hff-contact a:hover, .hff-contact a:focus {
  color: #fc0;
}

.hff-address {
  margin-top: 25px;
  width: 30%;
}

/* main footer */

.body-public.body-class-home .members-footer {
  display: none;
}

.public-footer {
  background: var(--footerbg);
  color: #fff;
  padding-top: 70px;
}

.tf-flex {
  display: flex;
  font-size: 16px;
  align-items: center;
}

.tff-logo {
  width: 107px;
  flex-shrink: 0;
}

.tff-contact {
  margin-left: 100px;
  width: 35%;
}

.tff-contact p {
  margin: 0px;
}

.tff-contact h6 {
  color: #fff;
  margin: 0px 0px 20px;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
}

.tff-contact a {
  color: #fff;
}

.tff-contact a:hover, .tff-contact a:focus {
  color: #fc0;
}

.tff-address {
  width: 35%;
  margin-left: 100px;
}

.tff-social {
  width: 20%;
  margin-left: 20px;
}

.tff-social a {
  color: #fff;
  font-size: 29px;
  margin-right: 20px;
}

.tff-social a:hover, .tff-social a:focus {
  color: #fc0;
}

.pf-line {
  margin: 50px 50px 0px;
  border-bottom: 1px solid #fff;
}

.members-footer {
  background: var(--footerbg);
  color: #fff;
  padding: 20px 0px 40px;
}

.mf-flex {
  display: flex;
  align-items: center;
}

.mff-copy {
  width: 50%;
}

.mff-links {
  width: 35%;
  margin: 0px 15px;
}

.mff-links a {
  color: #fff;
}

.mff-links a:hover, .mff-links a:focus {
  color: #fc0;
}

.mff-ig {
  text-align: right;
  width: 20%;
}

.mff-ig img {
  width: 120px;
}

/* loader animations */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes logoBounce {
  from {
    transform: scale(1,1);
  }
  to {
    transform: scale(1.09,1.09);
  }
}

@keyframes logoBounce {
  from {
    transform: scale(1,1);
  }
  to {
    transform: scale(1.09,1.09);
  }
}

/* page loader */

.page-loader {
  display: none;
}

.body-contentpage.body-public, .body-class-home.body-public {
  overflow: hidden;
}

.page-ready.body-contentpage.body-public, .page-ready.body-class-home.body-public {
  overflow: scroll;
}

@media (min-width: 768px) {
  .page-ready.body-class-home.body-public {
    overflow: hidden;
  }
}

.body-contentpage.body-public .page-loader, .body-class-home.body-public .page-loader {
  z-index: 1010;
  position: fixed;
  background: #fff;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  display: block;
  transition: all 800ms ease-in-out;
  -moz-transition: all 800ms ease-in-out;
  -webkit-transition: all 800ms ease-in-out;
}

.page-ready.body-contentpage.body-public .page-loader, .page-ready.body-class-home.body-public .page-loader {
  left: 100%;
}

.body-contentpage.body-public .page-loader .logo-holder, .body-class-home.body-public .page-loader .logo-holder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 150px;
  opacity: 0;
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 0.6s;
  -webkit-animation-duration: 0.6s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.body-contentpage.body-public .page-loader .logo-holder img, .body-class-home.body-public .page-loader .logo-holder img {
  animation-name: logoBounce;
  -webkit-animation-name: logoBounce;
  animation-duration: 0.8s;
  -webkit-animation-duration: 0.8s;
  animation-delay: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* page */

#globalwrap {
  padding: 0px;
}

.page-space {
  padding: 0px 200px;
}

.small-page-space {
  padding: 0px 100px;
}

/* home */

.body-class-home.body-public .header-wrapper {
  background: transparent;
}

.body-class-home.body-public.alter-logo .header-wrapper {
  background: #fff;
}

.body-class-home.body-public .header-logo {
  opacity: 0;
}

.body-class-home.body-public.alter-logo .header-logo {
  opacity: 1;
  visibility: visible;
}

.landscape-wrapper {
  position: relative;
  width: 100%;
}

.landscape-scroller {
  /*position: fixed;*/
  display: flex;
  flex-direction: column;
  transition: all 800ms ease-in-out;
  -moz-transition: all 800ms ease-in-out;
  -webkit-transition: all 800ms ease-in-out;
}

.ls-block {
  height: 100vh;
  position: relative;
  width: 100vw;
  flex-shrink: 0;
}

.ls-block-one {
  position: relative;
  z-index: 10;
  /*background: url('/images/resources/royalcountydown/home-landing-bg-even-more-faded.png');
  background-repeat: no-repeat;
  background-position: fixed;
  background-size: cover;*/
}

.ls-block-one-logo {
  position: fixed;
  left: 30px;
  right: 30px;
  margin: 0px auto;
  top: 30%;
  width: 180px;
  transform: translateY(-50%);
  text-align: center;
  transition: all 1000ms ease-in-out;
  -moz-transition: all 1000ms ease-in-out;
  -webkit-transition: all 1000ms ease-in-out;
}

.alter-logo .ls-block-one-logo {
  opacity: 0;
  visibility: hidden;
}

.ls-block-one-title {
  position: absolute;
  left: 30px;
  right: 30px;
  margin: 0px auto;
  bottom: 150px;
  transform: translateY(0%);
  text-align: center;
}

.ls-block-one-title h1 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  font-family: var(--landingfont);
}

.ls-block-one-explore {
  position: absolute;
  bottom: 50px;
  text-align: center;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  text-transform: uppercase;
  width: 300px;
  color: #fff;
  font-family: var(--headingfont);
  font-weight: 600;
}

.lsb-pic {
  position: relative;
}

.lsb-pic img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.lsb-content {
  position: absolute;
  bottom: 100px;
  left: 100px;
  color: #fff;
  max-width: 700px;
  font-size: 20px;
  z-index: 5;
}

.lsb-content h2 {
  color: #fff;
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  font-family: var(--landingfont);
}

.lsb-content a {
  color: #fff;
}

.lsb-content p:last-of-type a::after {
  content: '\f0da';
  font-family: 'FontAwesome';
  margin-left: 8px;
}

.lsb-content a:hover, .lsb-content a:focus {
  color: #fc0;
}

.lsb-prev {
  position: absolute;
  bottom: 100px;
  right: 100px;
  font-size: 30px;
  color: #fff;
  z-index: 50;
}

.lsb-next {
  position: absolute;
  bottom: 50px;
  right: 100px;
  font-size: 30px;
  color: #fff;
  z-index: 51;
}

.ls-block-one-explore p.desktop-text {
  display: none;
}

.home-page-wrapper .page-footer {
  display: none;
}

.landing-footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0px;
  right: 0px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  opacity: 0;
  visibility: hidden;
  z-index: 401;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.alter-logo .landing-footer, .body-contentpage .landing-footer {
  opacity: 1;
  visibility: visible;
}

.lf-disp .landing-footer {
  height: 191px;
}

.lf-trig {
  text-align: right;
  padding: 10px 100px 10px 0px;
  color: var(--headingcolor);
  font-family: var(--landingfont);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.lf-disp .lf-trig {
  background: #fff;
}

.lf-trig:hover {
    cursor: pointer;
    background: #fff;
  }

@media (min-width: 1200px) {
  
  /*.lsb-prev, .lsb-next {
    font-size: 0px;
  }*/
  .ls-block-five .lsb-next {
    display: none;
  }
  /*.page-ready.body-class-home.body-public {
    overflow: hidden;
  }*/
  .lsb-prev:hover, .lsb-next:hover {
    cursor: pointer;
  }
  .ls-block-one-explore:hover {
    cursor: pointer;
  }
  .ls-block-one-explore p {
    display: none;
  }
  .ls-block-one-explore p.desktop-text {
    display: block;
  }
}

/* inner */

.body-contentpage #global > br {
  display: none;
}

.inner-page-wrapper {
  margin-top: 168px;
}

.inner-page-wrapper a {
  text-decoration: underline;
}

.inner-page-nav {
  background: var(--headingcolor);
  color: #fff;
  padding: 15px 0px;
  text-align: right;
  position: fixed;
  z-index: 1001;
  top: 110px;
  width: 100%;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.inner-page-nav a {
  color: #fff;
}

.inner-page-nav ul {
  margin: 0px;
}

.inner-page-nav ul li {
  display: inline-block;
  margin: 0px 35px;
  list-style: none;
  text-transform: uppercase;
  font-family: var(--headingfont);
}

.inner-page-nav ul li:hover {
  cursor: pointer;
  text-decoration: underline;
}

.inner-page-nav ul li:last-of-type {
  margin-right: 0px;
}

.inner-two-col-equal.flex-row {
  display: flex;
}

.inner-two-col-equal.flex-row.flip-flex {
  flex-direction: row-reverse;
}

.inner-two-col-equal > div {
  flex: 1 1 0;
}

.start-block {
  background: var(--altpagebg);
}

.itce-content {
  position: relative;
}

.itce-content h1, .inner-full-added h1 {
  text-align: center;
  font-size: 50px;
  line-height: 60px;
  margin: 0px 0px 40px;
}

.itce-content h2, .additional-boxes h2, .start-block h2 {
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  margin: 0px 0px 30px;
}

.itce-content h3, .additional-boxes h3, .start-block h3 {
  font-size: 30px;
  line-height: 40px;
}

.inner-two-col-equal.flex-row .itcec-space {
  position: absolute;
  left: 200px;
  right: 150px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.inner-two-col-equal.flex-row.flip-flex .itcec-space {
  left: 150px;
  right: 200px;
}

.additional-boxes .inserted-block:nth-child(even) {
  background: var(--altpagebg);
}

/* inner added boxes style */

.body-contentpage .added-section-move-up {
  display: none;
}

.body-contentpage .added-section-move-down {
  display: none;
}

.body-contentpage .additional-button-row {
  display: none;
}

.body-contentpage .added-section-remove {
  display: none;
}

.inserted-block {
  position: relative;
  padding: 0px; /* change this padding to increase / decrease the gap between added sections */
}

.inner-full-added {
  text-align: center;
  padding: 60px 0px;
}

.two-equal-added.flex-row {
  display: flex;
  padding: 60px 0px;
}

.two-equal-added .ie-col {
  width: 50%;
}

.two-equal-added .ie-col:first-of-type {
  margin-right: 15px;
}

.two-equal-added .ie-col:last-of-type {
  margin-left: 15px;
}

.three-equal-added.flex-row {
  display: flex;
  padding: 60px 0px;
}

.three-equal-added.flex-row .ie-col {
  flex: 1 1 0;
}

.three-equal-added.flex-row .ie-col:first-child {
  margin-right: 15px;
}

.three-equal-added.flex-row .ie-col:nth-child(2) {
  margin: 0px 15px;
}

.three-equal-added.flex-row .ie-col:last-child {
  margin-left: 15px;
}

.three-unequal-added.flex-row {
  display: flex;
}

.three-unequal-added .main-col {
  width: 50%;
  margin-right: 15px;
}

.three-unequal-added .sidebar-col {
  width: 25%;
}

.three-unequal-added .sidebar-col:nth-child(1) {
  margin: 0px 15px;
}

.three-unequal-added .sidebar-col:last-child {
  margin-left: 15px;
}

.three-unequal-added.center-main .main-col {
  margin: 0px 15px;
}

.three-unequal-added.center-main .sidebar-col:nth-child(1) {
  margin-right: 15px;
  margin-left: 0px;
}

.three-unequal-added.center-main .sidebar-col:nth-child(2) {
  margin-left: 15px;
}

.three-unequal-added.right-main .main-col {
  margin-right: 0px;
  margin-left: 15px;
}

.three-unequal-added.right-main .sidebar-col:nth-child(1) {
  margin-right: 15px;
  margin-left: 0px;
}

.three-unequal-added.right-main .sidebar-col:nth-child(2) {
  margin: 0px 15px;
}

.four-equal-added.flex-row {
  display: flex;
  padding: 60px 0px;
}

.four-equal-added.flex-row .ie-col {
  flex: 1 1 0;
}

.four-equal-added.flex-row .ie-col:first-child {
  margin-right: 10px;
}

.four-equal-added.flex-row .ie-col:nth-child(2), .four-equal-added.flex-row .ie-col:nth-child(3) {
  margin: 0px 10px;
}

.four-equal-added.flex-row .ie-col:last-child {
  margin-left: 10px;
}

.carousel-container {
  padding: 60px 0px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .two-equal-added, .three-equal-added, .four-equal-added {
    flex-direction: column;
  }
  .ie-col {
    text-align: center;
    width: 100%;
  }
  .flip-flex {
    flex-direction: column-reverse;
  }
  .two-equal-added.flex-row.flip-flex .ie-col:last-child {
    margin-top: 0px;
  }
  .two-equal-added.flex-row.flip-flex .ie-col:first-child {
    margin-top: 30px;
  }
  .three-equal-added.flex-row .ie-col:first-child {
    margin: 0px;
  }
  .three-equal-added.flex-row .ie-col:nth-child(2) {
    margin: 20px 0px;
  }
  .three-equal-added.flex-row .ie-col:last-child {
    margin: 0px;
  }
  .four-equal-added.flex-row .ie-col:first-child {
    margin: 0px;
  }
  .four-equal-added.flex-row .ie-col:nth-child(2), .four-equal-added.flex-row .ie-col:nth-child(3), .four-equal-added.flex-row .ie-col:last-child {
    margin: 20px 0px 0px;
  }
  .two-unequal-added.flex-row {
    flex-direction: column;
    text-align: center;
  }
  .two-unequal-added .main-col {
    width: 100%;
    margin: 0px;
  }
  .two-unequal-added .sidebar-col {
    width: 100%;
    margin: 20px 0px 0px;
  }
  .two-unequal-added.flex-row.flip-flex {
    flex-direction: column-reverse;
  }
  .two-unequal-added.flip-flex .main-col {
    width: 100%;
    margin: 0px;
  }
  .two-unequal-added.flip-flex .sidebar-col {
    width: 100%;
    margin: 20px 0px 0px;
  }
}

.two-col-carousel-container > .wysiwyg-editable > br {
  display: none;
}

.two-col-carousel-container > .wysiwyg-editable > p {
  margin: 0px;
}

/* two col carousel */

.pro-staff-two-col {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.pro-staff-carousel-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
}

.pro-staff-carousel-item {
  width: 100vw;
  display: inline-block;
}

.pro-staff-two-col .itce-pic img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.two-col-control-holder {
  width: 50%;
  position: relative;
}

.pro-staff-carousel-prev {
  position: absolute;
  bottom: 100px;
  left: 45%;
  font-size: 30px;
  color: var(--headingcolor);
}

.pro-staff-carousel-next {
  position: absolute;
  bottom: 100px;
  left: 55%;
  font-size: 30px;
  color: var(--headingcolor);
}

.two-col-control-holder > div:hover {
  cursor: pointer;
}

.pro-staff-carousel-item .itcec-space {
  height: 350px;
}

/* shop brands 4 col carousel */

.shop-brands-carousel {
  position: relative;
  height: 70px;
  overflow: hidden;
  width: 1400px;
  margin: 0px auto;
}

.shop-brands-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
  display: flex;
  align-items: center;
}

.shop-brands-item {
  width: 330px;
  margin-right: 20px;
  text-align: center;
}

.shop-brands-controls {
  text-align: center;
  width: 200px;
  margin: 40px auto 80px;
}

.sbc-prev {
  display: inline-block;
  width: 90px;
  font-size: 30px;
  color: var(--headingcolor);
}

.sbc-prev:hover {
  cursor: pointer;
}

.sbc-next {
  display: inline-block;
  width: 90px;
  font-size: 30px;
  color: var(--headingcolor);
}

.sbc-next:hover {
  cursor: pointer;
}

/* club fitting 5 col carousel */

.club-fitting-carousel {
  position: relative;
  height: 70px;
  overflow: hidden;
  width: 1400px;
  margin: 0px auto;
}

.club-fitting-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
  display: flex;
  align-items: center;
}

.club-fitting-item {
  width: 265px;
  margin-right: 15px;
  text-align: center;
}

.club-fitting-controls {
  text-align: center;
  width: 200px;
  margin: 40px auto 0px;
}

.cfc-prev {
  display: inline-block;
  width: 90px;
  font-size: 30px;
  color: var(--headingcolor);
}

.cfc-prev:hover {
  cursor: pointer;
}

.cfc-next {
  display: inline-block;
  width: 90px;
  font-size: 30px;
  color: var(--headingcolor);
}

.cfc-next:hover {
  cursor: pointer;
}

/* accordions */

/* accordions custom public */

.body-contentpage .additional-accordions .added-section-accordion {
  display: none;
}

.body-contentpage .additional-accordions .added-accordion-move-up {
  display: none;
}

.body-contentpage .additional-accordions .added-accordion-move-down {
  display: none;
}

.body-contentpage .additional-accordions .added-accordion-remove {
  display: none;
}

.body-contentpage .inserted-accordion {
  margin: 20px 0px;
}

.body-contentpage .accordion-title {
  position: relative;
}

.body-contentpage .accordion-title:hover {
  cursor: pointer;
}

.body-contentpage .accordion-title h3 {
  padding-right: 30px;
}

.body-contentpage .accordion-title h3 br {
  display: none;
}

.body-contentpage .accordion-title h3::after {
  content: '\f105';
  font-family: 'FontAwesome';
  margin-left: 6px;
  font-size: 36px;
  position: absolute;
  right: 0px;
  top: 0px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.body-contentpage .active-accord .accordion-title h3::after {
  content: '\f105';
  transform: rotate(90deg);
}

.body-contentpage .accordion-content {
  display: none;
}

/* timeline */

.timeline-container > .wysiwyg-editable > br {
  display: none;
}

.timeline-container > .wysiwyg-editable > p {
  margin: 0px;
}

.timeline-wrapper {
  position: relative;
  height: 85vh;
}

.tw-title {
  position: absolute;
  top: 80px;
  width: 50%;
  left: 0px;
  text-align: center;
  z-index: 19;
}

.tw-title h2 {
  margin: 0px;
  font-size: 40px;
  line-height: 50px;
}

.tw-control {
  position: absolute;
  top: 160px;
  left: 230px;
  margin: 0px auto;
  width: 500px;
  z-index: 20;
}

.twc-prev {
  font-size: 28px;
  color: var(--headingcolor);
  position: absolute;
  left: 0px;
  top: 22px;
}

.twc-prev:hover {
  cursor: pointer;
}

.twc-next {
  font-size: 28px;
  color: var(--headingcolor);
  position: absolute;
  right: 0px;
  top: 22px;
}

.twc-next:hover {
  cursor: pointer;
}

.twc-years {
  margin: 0px 50px;
  position: relative;
  height: 70px;
  overflow: hidden;
}

.twc-mover {
  position: absolute;
  width: 400px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  display: flex;
  flex-wrap: nowrap;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.twc-mover > div {
  width: 60px;
  line-height: 60px;
  text-align: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent;
  margin: 0px 20px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.twc-mover > div:hover {
  cursor: pointer;
}

.twc-mover .active-year {
  background: var(--headingcolor);
  color: #fff;
}

.tw-main {
  position: relative;
  overflow: hidden;
  height: 85vh;
}

.tw-main > div {
  position: absolute;
  left: 0px;
  height: 85vh;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.tw-main .timeline-active {
  opacity: 1;
  visibility: visible;
}

.ti-flex {
  display: flex;
}

@media (min-width: 980px) {
  .ti-flex {
    flex-direction: row-reverse;
  }
}

.tif-pic {
  width: 50%;
  overflow: hidden;
  position: relative;
}

.inner-page-wrapper .tif-pic .galleryWrapper .galleryInner, .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner img {
  height: 85vh !important;
  width: 100%;
  object-fit: cover;
}

.tif-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tif-content {
  width: 50%;
}

.tifc-space {
  padding: 20px 120px 20px;
  margin-top: 240px;
}

/* course introduction */

.page-url-championship_links .ie-col table th:nth-child(2), .page-url-championship_links .ie-col table td:nth-child(2) {
  background: var(--scorecardblue);
  color: #fff;
}

.page-url-championship_links .ie-col table th:nth-child(3), .page-url-championship_links .ie-col table td:nth-child(3), .page-url-annesley_links .ie-col table th:nth-child(2), .page-url-annesley_links .ie-col table td:nth-child(2) {
  background: var(--scorecardwhite);
  color: var(--bodycolor);
}

.page-url-championship_links .ie-col table th:nth-child(4), .page-url-championship_links .ie-col table td:nth-child(4), .page-url-annesley_links .ie-col table th:nth-child(3), .page-url-annesley_links .ie-col table td:nth-child(3) {
  background: var(--scorecardyellow);
  color: #000;
}

.page-url-championship_links .ie-col table th:nth-child(7), .page-url-championship_links .ie-col table td:nth-child(7), .page-url-annesley_links .ie-col table th:nth-child(6), .page-url-annesley_links .ie-col table td:nth-child(6) {
  background: var(--scorecardred);
  color: #fff;
}

/* hole */

.hole-page-wrapper {
  margin-top: 110px;
  overflow: hidden;
}

.hole-main-content {
  position: relative;
  height: calc(100vh - 110px);
}

.hole-main-content > div {
  position: absolute;
  top: 0px;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}

.hole-main-content > div.active-hole {
  left: 0px;
  z-index: 400;
  opacity: 1;
  visibility: visible;
}

.hole-main-content > div.previous-hole {
  left: -100%;
}

.hole-page-nav {
  background: var(--headingcolor);
  color: #fff;
  padding: 21px 0px;
  text-align: right;
}

.hole-page-nav ul {
  margin: 0px;
  display: flex;
  justify-content: space-evenly; 
}

.hole-page-nav ul li {
  display: inline-block;
  margin: 0px 15px;
  list-style: none;
  text-transform: uppercase;
  font-family: var(--headingfont);
}

.hole-page-nav ul li:hover {
  cursor: pointer;
  text-decoration: underline;
}

.hole-content-holder {
  position: relative;
  height: calc(100vh - 110px);
  background: #fff;
}

.hole-change-block {
  width: 72%;
  position: relative;
  height: calc(100vh - 110px);
}

.hole-change-block > div {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.hole-change-block .active-block {
  opacity: 1;
  visibility: visible;
}

.hcb-gallery .galleryInner, .hcb-gallery .galleryInner img {
  width: 100% !important;
  height: calc(100vh - 110px) !important;
  object-fit: cover;
}

.hcb-flyover {
  height: calc(100vh - 110px);
  position: relative;
}

.background-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.foreground-video,
.background-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16/9) {
  .foreground-video {
    height: 310%;
    top: -105%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .foreground-video {
    width: 300%;
    left: -100%;
  }
  .hcbw-temp .foreground-video {
    left: -118%;
  }
}

.hcb-map img {
  width: 100%;
  height: calc(100vh - 110px);
  object-fit: cover;
}

.hole-fixed-block {
  width: 28%;
  position: absolute;
  top: 0px;
  right: 0px;
  height: calc(100vh - 110px);
  background: #EFEEEE;
}

.hfb-space {
  padding: 70px;
  position: relative;
}

.hole-prev {
  position: absolute;
  top: 109px;
  right: 140px;
  font-size: 30px;
  color: var(--headingcolor);
}

.hole-prev:hover {
  cursor: pointer;
}

.hole-next {
  position: absolute;
  top: 109px;
  right: 70px;
  font-size: 30px;
  color: var(--headingcolor);
}

.hole-next:hover {
  cursor: pointer;
}

.hole-title h1 {
  margin: 0px;
  font-size: 40px;
  line-height: 50px;
}

.hole-yards {
  margin-top: 30px;
  font-family: var(--headingfont);
  font-size: 20px;
  color: var(--headingcolor);
}

.hole-yards > div {
  margin-bottom: 10px;
}

.hole-yards .blue::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: var(--scorecardblue);
  border-radius: 50%;
  float: left;
  position: relative;
  top: 3px;
  margin-right: 20px;
}

.hole-yards .white::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--headingcolor);
  line-height: 18px;
  background: var(--scorecardwhite);
  border-radius: 50%;
  float: left;
  position: relative;
  top: 3px;
  margin-right: 20px;
}

.hole-yards .yellow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--headingcolor);
  line-height: 18px;
  background: var(--scorecardyellow);
  border-radius: 50%;
  float: left;
  position: relative;
  top: 3px;
  margin-right: 20px;
}

.hole-yards .red::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--headingcolor);
  line-height: 18px;
  background: var(--scorecardred);
  border-radius: 50%;
  float: left;
  position: relative;
  top: 3px;
  margin-right: 20px;
}

.hole-tip {
  margin-top: 40px;
  /*font-weight: 600;
  font-family: var(--headingfont);*/
  font-size: 18px;
  padding-right: 10px;
}

.hole-nav {
  margin-top: 60px;
}

.hole-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.hole-grid > div {
  width: 39px;
  height: 39px;
  line-height: 39px;
  border: 1px solid transparent;
  color: var(--headingcolor);
  text-align: center;
  margin: 15px 15%;
  font-family: var(--headingfont);
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.hole-grid > div:hover {
  border-color: var(--headingcolor);
  cursor: pointer;
  background: #fff;
}

.hmc-one.active-hole .hole-grid #hg-one, .hmc-two.active-hole .hole-grid #hg-two, .hmc-three.active-hole .hole-grid #hg-three, .hmc-four.active-hole .hole-grid #hg-four, .hmc-five.active-hole .hole-grid #hg-five, .hmc-six.active-hole .hole-grid #hg-six, .hmc-seven.active-hole .hole-grid #hg-seven, .hmc-eight.active-hole .hole-grid #hg-eight, .hmc-nine.active-hole .hole-grid #hg-nine, .hmc-ten.active-hole .hole-grid #hg-ten, .hmc-eleven.active-hole .hole-grid #hg-eleven, .hmc-twelve.active-hole .hole-grid #hg-twelve, .hmc-thirteen.active-hole .hole-grid #hg-thirteen, .hmc-fourteen.active-hole .hole-grid #hg-fourteen, .hmc-fifteen.active-hole .hole-grid #hg-fifteen, .hmc-sixteen.active-hole .hole-grid #hg-sixteen, .hmc-seventeen.active-hole .hole-grid #hg-seventeen, .hmc-eighteen.active-hole .hole-grid #hg-eighteen {
  border-color: var(--headingcolor);
  background: #fff;
}

/* members */

.body-class-members {
  background: url('/images/resources/royalcountydown/new-members-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.body-class-members .header-wrapper {
  background: var(--headerbg);
  width: 100%;
  min-height: 100px;
  position: relative;
}

.body-class-members .nav-section {
  margin-top: 0px;
  width: auto;
}

.body-class-members .header-logo {
  float: left;
  margin-left: 0px;
  position: relative;
  top: 4px;
  width: 82px;
  height: auto;
  overflow: hidden;
}

.body-class-members .header-login {
  display: none;
}

.body-class-members .header-left {
  display: none;
}

.body-class-members .nav-logo {
  display: none;
}

.body-class-members .nav-status {
  display: none;
}

.body-class-members .header-status {
  display: none;
}

.body-class-members .header-links {
  display: none;
}

.body-class-members .header-right {
  display: none;
}

.body-class-members .top-header-left {
  display: none;
}

.body-class-members .header-top-right {
  top: 10px;
  display: none;
}

.body-class-members .header-info {
  margin-bottom: 10px;
}

.body-class-members .navbar-inverse .nav > li {
  border-bottom: none;
  float: left;
}

.body-class-members .navbar-inverse .nav > li.dropdown.open > a, .body-class-members .navbar-inverse .nav > li.dropdown.active > a, .body-class-members .navbar-inverse .nav > li.dropdown.active.open > a {
  color: #17609D;
}

.body-class-members .navbar-inverse .nav > li > a {
  text-transform: capitalize;
  letter-spacing: 0px;
  padding: 10px 15px;
  font-size: 15px;
  color: var(--bodycolor);
  font-family: var(--bodycolor);
}

.body-class-members .navbar-inverse .nav > li > a:hover, .body-class-members .navbar-inverse .nav > li > a:focus {
  color: #17609D;
}

.body-class-members .navbar-inverse .nav > li.current > a {
  color: #17609D;
}

.body-class-members .header-space {
  width: 1170px;
  margin: 0px auto;
}

.body-class-members #hamburger-icon {
  position: relative;
  display: none;
}

.body-class-members .nav-wrapper {
  margin-top: 0px;
  height: auto;
  padding: 0px;
  overflow-y: visible;
  position: relative;
  top: 27px;
  margin-left: 95px;
}

.body-class-members .dropdown-menu {
  position: absolute;
  background: var(--altpagebg);
}

.body-class-members .dropdown-menu > li > a {
  padding: 8px 20px;
  color: var(--headingcolor);
  font-size: 16px;
  font-weight: 400;
}

.body-class-members .dropdown-menu > li > a:hover, .body-class-members .dropdown-menu > li > a:focus, .body-class-members .dropdown-menu > li.active > a {
  color: var(--navactivelink);
}

.body-class-members .content-wrapper {
  width: 1170px;
  margin: 0px auto;
}

.body-class-members .content-wrapper a {
  color: #17609D;
}

.body-class-members .content-wrapper a:hover, .body-class-members .content-wrapper a:focus {
  text-decoration: underline;
}

.body-class-members .content-wrapper a.btn {
  color: #fff;
}

.body-class-members #myNavbar {
  position: relative;
  top: 0px;
  right: 0px;
  min-height: auto;
  background: transparent;
  width: auto;
  margin-top: 0px;
}

.body-class-members .content-wrapper {
  width: 1170px;
  margin: 0px auto;
}

.body-class-members #container #globalwrap {
  margin-top: 100px;
  margin-bottom: 60px;
  border: 2px solid var(--headingcolor);
  padding: 20px;
  background: rgba(255,255,255,0.9);
}

/* sticky footer */

@media (min-width: 768px) {
  html {
    position: relative;
    min-height: 100%;
  }
  body[class*="php-"], .body-class-members, .body-class-visitorbooking, .body-class-getawayletter, [class*="body-class-setcoursestatus"], .body-class-opens, .body-loginpage, body[class*="match"], .invalid-page {
   margin-bottom: 200px; 
  }
  body[class*="php-"] .members-footer, .body-class-members .members-footer, .body-class-visitorbooking .members-footer, .body-class-getawayletter .members-footer, [class*="body-class-setcoursestatus"] .members-footer, .body-class-opens .members-footer, .body-loginpage .members-footer, body[class*="match"] .members-footer, .invalid-page .members-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 40px;
    padding: 20px 0px;
  }
}

/* login page */

#login {
  text-align: center;
}

#login h3 {
  margin: 0px 0px 20px;
  padding-bottom: 10px;
}

#login fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  display: inline-block;
  transform: translateX(-90px);
}

#login input[type*="submit"] {
  margin-top: 20px;
  letter-spacing: 2px;
  font-size: 16px;
}

#login > div {
  padding-bottom: 0px !important;
}

/* buttons */

input[type*="submit"], a.btn, button.btn {
  display: inline-block;
  text-shadow: none;
  background: linear-gradient(to left, var(--headingcolor) 50%, #000 50%) right;
  background-size: 200% 100%;
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  margin: 2px;
   transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

input[type*="submit"]:hover, a.btn:hover, button.btn:hover, input[type*="submit"]:focus, a.btn:focus, button.btn:focus {
  background-position: left;
  color: #fff;
}

/* no pin page */

.php-login .nav > li.nav-menu-login\.php {
  display: none;
}

.php-login .nav > li.nav-menu-competition\.php, .php-login .nav > li.nav-menu-competition2\.php {
  display: none;
}

/* members */

thead {
  background: var(--headingcolor);
  color: #fff;
  font-weight: 400;
}

.body-class-members .content-wrapper thead a {
  color: #fff;
  text-decoration: underline;
}

.table th {
  font-weight: 400;
}

.php-index.body-class-members #container #globalwrap {
  background: transparent;
  border: none;
  padding: 0px;
}

.php-index #leftcontent > div, .php-index #rightcontent > div {
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--headingcolor);
  position: relative;
}

.php-index #globalwrap .weatherMini {
  position: absolute;
  top: 8px;
  right: 8px;
}

.php-index #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-index #globalwrap .weatherImage img {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-weatherfg #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-weatherfg #globalwrap .weatherImage img, .php-weatherfg #globalwrap .weatherImage img.image-night {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-index #globalwrap .weatherImage i {
  font-size: 28px;
}

.php-analysis .content-wrapper .pull-left, .php-courseanalysis .content-wrapper .pull-left {
  float: none;
}

.php-analysis .content-wrapper .pull-right, .php-courseanalysis .content-wrapper .pull-right {
  float: none;
}

.content-wrapper .well {
  background: transparent;
  padding: 10px;
  border: none;
  box-shadow: none;
}

.body-class-members .content-wrapper {
  line-height: 28px;
}

.body-class-members .nav-menu-information .dropdown-menu .nav-menu-information {
  display: none;
}

/*.body-class-members .content-wrapper a {
  text-decoration: underline;
}*/

.body-class-members .content-wrapper a.btn {
  text-decoration: none;
}

.body-class-members .header-login {
  display: none;
}

.body-class-members .navbar-inverse .navbar-inner {
  margin-right: 0px;
}

.php-halloffame .hallOfFame > div:nth-child(3) {
  padding-left: 20px;
}

#ui-datepicker-div {
  display: none;
}

.php-search .content-wrapper input {
  margin-bottom: 0px;
}

.body-class-members .header-wrapper .navbar-inverse .nav > li > a {
  text-transform: capitalize;
  font-size: 15px;
  letter-spacing: 0px;
}

.body-class-members .header-wrapper {
  position: relative;
}

.body-class-members.body-contentpage .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.body-class-members.body-contentpage .content-wrapper .container {
  width: auto;
}

.php-eclectic table thead.tableFloatingHeaderOriginal {
  background-color: var(--headingcolor) !important;
}

.php-boardcomps a.btn {
  width: 250px;
  display: block;
  font-size: 14px;
  margin: 5px 0px;
}

.php-boardcomps a.btn.pull-right {
  float: none;
  margin-top: -27px;
}

#memteetimes thead th {
  color: #fff;
}

.php-directory .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .php-friends .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
  font-size: 16px;
}

.php-diary .diary-nav-right a {
  transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -webkit-transition: all 0ms ease-in-out;
}

.php-log #globalwrap {
  overflow-x: scroll;
}

.php-log #globalwrap table tr td:nth-child(3) {
  word-break: break-word;
}

@media (min-width: 0px) and (max-width: 800px) {
  .php-competition2 table.comps-list-table .comp-ical-td {
    right: -10px;
  }
}

/* desktop responsive */

@media (min-width: 1600px) and (max-width: 1799px) {
  .page-space {
    padding: 0px 150px;
  }
  .small-page-space {
    padding: 0px 80px;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    left: 150px;
    right: 100px;
  }
  .inner-two-col-equal.flex-row.flip-flex .itcec-space {
    left: 100px;
    right: 150px;
  }
  .tw-control {
    left: 100px;
    width: 600px;
    top: 180px;
  }
  .tw-title {
    top: 60px;
  }
  .tifc-space {
    margin-top: 260px;
    font-size: 14px;
    line-height: 26px;
  }
  .shop-brands-carousel {
    width: 1300px;
  }
  .shop-brands-item {
    width: 305px;
  }
  .club-fitting-carousel {
    width: 1300px;
  }
  .club-fitting-item {
    width: 245px;
  }
  .hff-club {
    margin-left: 55px;
  }
  .hff-contact {
    margin: 33px 70px 0px;
  }
  .hfb-space {
    padding: 50px;
  }
  .hole-prev {
    top: 109px;
  }
  .hole-next {
    top: 109px;
  }
  .hole-tip {
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
  }
  .hole-nav {
    margin-top: 40px;
  }
  .hole-grid > div {
    margin: 10px 15%;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .page-space {
    padding: 0px 100px;
  }
  .small-page-space {
    padding: 0px 60px;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    left: 100px;
    right: 50px;
  }
  .inner-two-col-equal.flex-row.flip-flex .itcec-space {
    left: 50px;
    right: 100px;
  }
  .tw-control {
    left: 50px;
    width: 600px;
    top: 110px;
  }
  .tw-title {
    top: 40px;
  }
  .tifc-space {
    margin-top: 190px;
    font-size: 14px;
    line-height: 26px;
  }
  .shop-brands-carousel {
    width: 1200px;
  }
  .shop-brands-item {
    width: 280px;
  }
  .club-fitting-carousel {
    width: 1200px;
  }
  .club-fitting-item {
    width: 225px;
  }
  .tifc-space {
    padding-left: 80px;
    padding-right: 80px;
  }
  .tff-contact {
    margin-left: 50px;
  }
  .tff-contact h6 {
    font-size: 26px;
    line-height: 36px;
  }
  .tff-address {
    margin-left: 50px;
  }
  .hf-flex {
    font-size: 16px;
  }
  .hff-club {
    margin-left: 55px;
  }
  .hff-contact {
    margin: 33px 70px 0px;
  }
  .hfb-space {
    padding: 20px;
  }
  .hole-prev {
    top: 109px;
  }
  .hole-next {
    top: 109px;
  }
  .hole-yards > div {
    display: inline-block;
    width: 150px;
  }
  .hole-tip {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .hole-nav {
    margin-top: 20px;
  }
  .hole-grid > div {
    margin: 5px 15%;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .page-space {
    padding: 0px 50px;
  }
  .small-page-space {
    padding: 0px 40px;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    left: 50px;
    right: 30px;
  }
  .inner-two-col-equal.flex-row.flip-flex .itcec-space {
    left: 30px;
    right: 50px;
  }
  .tw-control {
    left: 50px;
    width: 500px;
    top: 90px;
  }
  .tw-title {
    top: 20px;
  }
  .tifc-space {
    margin-top: 160px;
  }
  .shop-brands-carousel {
    width: 1100px;
  }
  .shop-brands-item {
    width: 255px;
  }
  .club-fitting-carousel {
    width: 1100px;
  }
  .club-fitting-item {
    width: 205px;
  }
  .tifc-space {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 14px;
    line-height: 24px;
  }
  #timeline-item-three {
    font-size: 12px;
    line-height: 20px;
  }
  .tf-flex {
    font-size: 16px;
  }
  .tff-contact {
    margin-left: 50px;
  }
  .tff-contact h6 {
    font-size: 22px;
    line-height: 32px;
  }
  .tff-address {
    margin-left: 50px;
  }
  .hf-flex {
    font-size: 16px;
  }
  .hff-club {
    margin-left: 20px;
    font-size: 24px;
  }
  .hff-contact {
    margin: 33px 30px 0px;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    font-size: 16px;
  }
  .hfb-space {
    padding: 20px;
  }
  .hole-prev {
    top: 109px;
    right: 90px;
  }
  .hole-next {
    top: 109px;
    right: 20px;
  }
  .hole-yards > div {
    display: inline-block;
    width: 125px;
  }
  .hole-tip {
    margin-top: 10px;
    font-size: 13px;
    line-height: 22px;
  }
  .hole-yards {
    margin-top: 10px;
  }
  .hole-nav {
    margin-top: 20px;
  }
  .hole-grid > div {
    margin: 5px 15%;
    height: 29px;
    line-height: 29px;
  }
  .ls-block-one-explore {
    bottom: 20px;
  }
  .ls-block-one-title {
    top: 70%;
  }
  .ls-block-one-title h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .lsb-content h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .pro-staff-carousel-prev {
    bottom: 50px;
  }
  .pro-staff-carousel-next {
    bottom: 50px;
  }
}

.tw-control {
  width: 500px;
}

/* home responsive */

@media (min-width: 0px) and (max-width: 1199px) {
  .body-public.body-class-home .members-footer {
    display: block;
  }
  .landscape-scroller {
    position: relative;
    flex-direction: column;
  }
  .lsb-content {
    bottom: 0px;
    left: 0px;
    padding: 0px 80px 70px 70px;
    max-width: 100%;
    width: calc(100% - 150px);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0e3f68+0,0e3f68+100&0+0,0.7+100 */
    background: linear-gradient(to bottom,  rgba(14,63,104,0) 0%,rgba(14,63,104,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .ls-block-two .lsb-prev {
    display: block;
  }
  .lsb-prev {
    bottom: 120px;
    right: 70px;
    transform: rotate(0deg);
  }
  .lsb-prev:hover {
    cursor: pointer;
  }
  .lsb-next {
    bottom: 70px;
    right: 70px;
    transform: rotate(0deg);
  }
  .lsb-next:hover {
    cursor: pointer;
  }
  .ls-block-one {
    z-index: 50;
  }
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .page-space {
    padding: 0px 25px;
  }
  .small-page-space {
    padding: 0px 20px;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    left: 25px;
    right: 15px;
  }
  .inner-two-col-equal.flex-row.flip-flex .itcec-space {
    left: 15px;
    right: 25px;
  }
  .tw-control {
    left: 25px;
    width: 440px;
    top: 90px;
  }
  .tw-title {
    top: 20px;
  }
  .tifc-space {
    margin-top: 160px;
    font-size: 14px;
    line-height: 22px;
  }
  #timeline-item-three .tifc-space, #timeline-item-seven .tifc-space, #timeline-item-nine .tifc-space, #timeline-item-ten .tifc-space, #timeline-item-seven .tifc-space, #timeline-item-seventeen .tifc-space {
    font-size: 12px;
    line-height: 20px;
  }
  .shop-brands-carousel {
    width: 930px;
  }
  .shop-brands-item {
    width: 212.5px;
  }
  .club-fitting-carousel {
    width: 930px;
  }
  .club-fitting-item {
    width: 171px;
  }
  .tifc-space {
    padding-left: 40px;
    padding-right: 40px;
  }
  .twc-years {
    margin: 0px 20px;
  }
  .twc-mover > div {
    margin: 0px 20px;
  }
  .tf-flex {
    font-size: 14px;
  }
  .tff-contact {
    margin-left: 50px;
  }
  .tff-contact h6 {
    font-size: 18px;
    line-height: 28px;
  }
  .tff-address {
    margin-left: 50px;
  }
  .hf-flex {
    font-size: 14px;
  }
  .hff-club {
    margin-left: 20px;
    font-size: 18px;
  }
  .hff-contact {
    margin: 33px 30px 0px;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    font-size: 16px;
    line-height: 26px;
  }
  .itce-content h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .hfb-space {
    padding: 20px;
  }
  .hole-prev {
    top: 109px;
    right: 80px;
  }
  .hole-next {
    top: 109px;
    right: 20px;
  }
  .hole-yards > div {
    display: inline-block;
    width: 125px;
  }
  .hole-tip {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }
  .hole-nav {
    margin-top: 20px;
  }
  .hole-grid > div {
    margin: 5px 15%;
  }
  .pro-staff-two-col {
    height: 70vh;
  }
  .pro-staff-two-col .itce-pic img {
    height: 70vh;
  }
  .pro-staff-carousel-prev {
    bottom: 20px;
  }
  .pro-staff-carousel-next {
    bottom: 20px;
  }
  .members-footer {
    font-size: 13px;
  }
  .itce-content h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .itce-content h3 {
    margin: 10px 0px;
  }
  .inner-page-nav ul li, .hole-page-nav ul li {
    margin: 0px 20px;
    text-transform: capitalize;
  }
  .body-class-members .navbar-inverse .nav > li > a {
    font-size: 12px;
    padding: 10px 11px;
  }
  .body-class-members .header-space {
    width: 940px;
  }
  .body-class-members .content-wrapper {
    width: 940px;
  }
  body[class*="php-"] .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-visitorbooking .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-getawayletter .navbar-inverse .nav > li.nav-haslevel-2 > a::after, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-opens .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-loginpage .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
    display: none;
  }
  .php-roundmgmt table td, .php-roundmgmt table th {
    padding: 2px;
    font-size: 12px;
  }
  #global.teebooking .tabs li a {
    font-size: 100%;
    padding: 10px;
  }
  .php-roundmgmt .dateperiods {
    width: 56%;
  }
  .php-knockout #globalwrap {
    overflow-x: scroll;
  }
  .body-class-members.php-login .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 12px;
  }
  .body-class-members .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 14px;
    padding: 10px 12px;
  }
  .table td, .table th, table td, table th {
    padding: 6px;
    font-size: 14px;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 8px 12px;
  }
}

/* portrait tablet */

@media (min-width: 768px) and (max-width: 979px) {
  .page-space {
    padding: 0px 20px;
  }
  .small-page-space {
    padding: 0px 10px;
  }
  .inner-two-col-equal.flex-row, .inner-two-col-equal.flex-row.flip-flex {
    flex-direction: column;
    text-align: center;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    position: relative;
    left: 0px;
    right: 0px;
    padding: 50px 25px;
  }
  .inner-two-col-equal.flex-row.flip-flex .itcec-space {
    left: 0px;
    right: 0px;
  }
  .itce-pic {
    max-width: 450px;
    margin: 0px auto;
    padding-bottom: 40px;
  }
  .tw-title {
    top: 40px;
  }
  .shop-brands-carousel {
    width: 728px;
  }
  .shop-brands-item {
    width: 223px;
  }
  .club-fitting-carousel {
    width: 728px;
  }
  .club-fitting-item {
    width: 167px;
  }
  .tifc-space {
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 190px;
  }
  .twc-years {
    margin: 0px 40px;
  }
  .twc-mover > div {
    margin: 0px 20px;
  }
  .tf-flex {
    font-size: 12px;
  }
  .tff-contact {
    margin-left: 20px;
  }
  .tff-contact h6 {
    font-size: 16px;
    line-height: 26px;
    margin: 0px;
  }
  .tff-address {
    margin-left: 20px;
  }
  .home-footer {
    padding: 20px 0px;
  }
  .hf-flex {
    font-size: 12px;
  }
  .hff-logo {
    width: 80px;
  }
  .hff-club {
    margin-left: 20px;
    margin-top: 20px;
    font-size: 18px;
    width: 25%;
  }
  .hff-contact {
    margin: 28px 15px 0px;
    width: 20%;
  }
  .hff-address {
    margin-top: 21px;
  }
  .lf-disp .landing-footer {
    height: 147px;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    font-size: 16px;
    line-height: 26px;
  }
  .inner-two-col-equal .itcec-space .wysiwyg-editable {
    width: 100%;
  }
  .itce-content h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .hfb-space {
    padding: 20px;
  }
  .hole-prev {
    top: 20px;
    right: 80px;
  }
  .hole-next {
    top: 20px;
    right: 20px;
  }
  .hole-yards > div {
    display: inline-block;
    width: 125px;
  }
  .hole-tip {
    margin-top: 10px;
  }
  .hole-nav {
    margin-top: 20px;
  }
  .hole-grid > div {
    margin: 5px 15%;
  }
  .pro-staff-two-col {
    height: 70vh;
  }
  .pro-staff-two-col .itce-pic img {
    height: 70vh;
  }
  .two-col-control-holder {
    width: 100%;
  }
  .pro-staff-carousel-prev {
    bottom: 20px;
    left: 85%;
  }
  .pro-staff-carousel-next {
    bottom: 20px;
    left: 95%;
  }
  .members-footer {
    font-size: 12px;
  }
  .itce-content h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .itce-content h3 {
    margin: 10px 0px;
  }
  .inner-page-nav ul li, .hole-page-nav ul li {
    margin: 0px 10px;
  }
  .inner-page-nav ul li {
    text-transform: initial;
  }
  .page-url-championship_links .two-equal-added, .page-url-annesley_links .two-equal-added {
    flex-direction: column;
  }
  .page-url-championship_links .two-equal-added .ie-col, .page-url-annesley_links .two-equal-added .ie-col {
    width: 100%;
    margin: 15px 0px;
  }
  .hole-change-block {
    width: 100%;
    position: relative;
    height: 45vh;
  }
  .hcb-gallery .galleryInner, .hcb-gallery .galleryInner img {
    height: 45vh !important;
  }
  .hole-grid {
    max-width: 480px;
  }
  .hole-fixed-block {
    width: 100%;
    position: relative;
    height: 45vh;
  }
  .lsb-content {
    bottom: 0px;
    left: 0px;
    width: calc(100% - 130px);
    padding: 0px 80px 50px 50px;
  }
  .ls-block-one-title h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .lsb-content h2 {
    font-size: 46px;
    line-height: 56px;
  }
  .lsb-next {
    bottom: 50px;
    right: 50px;
  }
  .lsb-prev {
    bottom: 100px;
    right: 50px;
  }
  .ti-flex {
    flex-direction: column;
  }
  .tif-pic {
    width: 100%;
    height: 50vh;
    margin: 180px auto 0px;
  }
  .tif-pic img {
    width: 100%;
    height: 100%;
  }
  .tw-title {
    width: 100%;
    top: 0px;
  }
  .content-wrapper .tw-title h2 {
    margin-top: 35px;
  }
  .tw-control {
    top: 100px;
    left: 135px;
  }
  .tif-content {
    width: 100%;
  }
  .timeline-wrapper {
    height: auto;
    position: relative;
  }
  .tw-main {
    height: auto;
  }
  .tw-main > div {
    height: auto;
  }
   .tw-main > div.timeline-active {
    display: block;
    position: relative;
  }
  .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner, .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner img {
    height: 450px !important;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    position: relative;
    left: 0px;
    right: 0px;
    padding: 50px 25px;
    top: 0px;
    transform: translateY(0px);
  }
  .inner-two-col-equal.flex-row.flip-flex .itcec-space {
    left: 0px;
    right: 0px;
  }
  .body-class-members .header-space {
    width: 724px;
  }
   .body-class-members .content-wrapper {
    width: 724px;
  }
  .table td, .table th {
    font-size: 14px;
    padding: 4px;
  }
  .php-weatherfg div.phone-weather .weatherImage {
    background: transparent;
  }
  .content-wrapper div.phone-weather .wind_direction .wind_speed1 {
    top: 7px;
  }
  .php-hcaplist .btn-group + .btn-group {
    display: block;
    margin-left: 0px;
    margin-top: 10px;
  }
  .php-roundmgmt .dateperiods {
    width: 56%;
  }
  .php-directory .table td {
    padding: 2px;
    font-size: 12px;
  }
  .php-directory .table td > a[href*="mailto"] {
    word-break: break-all;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 6px 8px;
    letter-spacing: 0px;
    font-weight: 400;
  }
  .php-roundmgmt table td, .php-roundmgmt table th {
    padding: 2px;
    font-size: 11px;
  }
  #global.teebooking .tabs li a {
    font-size: 100%;
    padding: 10px;
  }
  #memteetimes {
    font-size: 14px;
  }
  .body-class-members #globalwrap {
    overflow-x: scroll;
  }
  input[type*="submit"], a.btn, button.btn {
    text-transform: capitalize;
  }
  .body-class-members .nav-section {
    width: auto;
  }
}

/* portrait tablet and mobile */

@media (min-width: 0px) and (max-width: 979px) {
  #hamburger-icon {
    right: 20px;
  }
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: var(--headingcolor);
    font-weight: 600;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background: transparent;
    color: var(--navactivelink);
  }
  .navbar-inverse .nav-collapse .dropdown-menu a {
    font-weight: 400;
  }
  .navbar-inverse .nav-collapse .dropdown-menu > li.current > a, .navbar-inverse .nav-collapse .nav > li.current > a {
    color: var(--navactivelink);
  }
  .nav-collapse .dropdown-menu {
    background: var(--dropdownbg);
  }
  .body-class-members #hamburger-icon {
    display: block;
    position: absolute;
  }
  .body-class-members .nav-wrapper {
    left: 0px;
    top: 0px;
    margin-left: 0px;
  }
  .body-class-members .navbar-inverse .nav > li {
    float: none;
  }
  .body-class-members .dropdown-menu {
    position: relative;
  }
  .body-class-members .dropdown-menu > li > a {
    padding: 8px 20px;
  }
}

.tff-contact h6 br {
  display: none;
}

.sps-left {
  display: none;
}

.sps-right {
  display: none;
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .menu-bg {
    display: none;
  }
  .page-space {
    padding: 0px 20px;
  }
  .small-page-space {
    padding: 0px 10px;
  }
  .lsb-content {
    bottom: 0px;
    left: 0px;
    padding: 0px 80px 50px 20px;
    font-size: 16px;
    width: calc(100% - 100px);
  }
  .lsb-content br {
    display: none;
  }
  .ls-block-one-title h1 {
    font-size: 26px;
    line-height: 36px;
  }
  .lsb-content h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .lsb-next {
    bottom: 20px;
    right: 20px;
  }
  .lsb-prev {
    bottom: 70px;
    right: 20px;
  }
  #myNavbar {
    width: 100%;
    right: -100%;
    min-height: 100vh;
  }
  .nav-wrapper {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    height: calc(100vh - 240px);
  }
  .navbar-inverse .nav > li > a {
    font-size: 22px;
  }
  .nav-logo {
    display: none;
  }
  .tf-flex {
    flex-direction: column;
    text-align: center;
    font-size: 16px;
  }
  .tff-logo {
    width: 100%;
  }
  .tff-logo img {
    width: 107px;
  }
  .tff-contact {
    width: 100%;
    margin: 20px 0px;
  }
  .tff-address {
    width: 100%;
    margin: 20px 0px;
  }
  .tff-social {
    width: 100%;
    margin: 20px 0px;
  }
  .tff-contact h6 br {
    display: block;
  }
  .pf-line {
    margin: 20px 15px 0px;
  }
  .mf-flex {
    flex-direction: column;
    text-align: center;
  }
  .members-footer {
    padding: 20px 0px 50px;
  }
  .mff-copy {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
  .mff-links {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    margin: 15px 0px;
  }
  .mff-ig {
    width: 100%;
    text-align: center;
  }
  .mff-ig img {
    width: 90px;
  }
  .inner-two-col-equal.flex-row, .inner-two-col-equal.flex-row.flip-flex {
    flex-direction: column-reverse;
    text-align: center;
  }
  .inner-two-col-equal.flex-row .itcec-space {
    position: relative;
    left: 0px;
    right: 0px;
    padding: 50px 25px;
    top: 0px;
    transform: translateY(0px);
  }
  .inner-two-col-equal.flex-row.flip-flex .itcec-space {
    left: 0px;
    right: 0px;
  }
  .itce-pic {
    max-width: 450px;
    margin: 0px auto;
  }
  .start-block .itce-pic {
    position: relative;
  }
  .start-block .itce-mt {
    position: absolute;
    bottom: 130px;
    left: 20px;
    right: 20px;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    font-weight: 500;
    font-family: var(--headingfont);
  }
  .two-equal-added .ie-col {
    width: 100%;
  }
  .two-equal-added .ie-col:first-of-type, .two-equal-added .ie-col:last-of-type {
    margin: 15px 0px;
  }
  .inner-page-nav .small-page-space, .hole-page-nav .small-page-space {
    padding: 0px 50px;
    position: relative;
    overflow: hidden;
  }
  .sps-left {
    position: absolute;
    top: -8px;
    left: 0px;
    font-family: 'FontAwesome';
    content: '\f0d9';
    font-size: 24px;
    color: #fff;
    display: block;
    z-index: 50;
    width: 50px;
    height: 40px;
    background: var(--headingcolor);
  }
  .sps-left:hover {
    cursor: pointer;
  }
  .sps-left i {
    position: relative;
    top: 3px;
    animation-name: spsLeftBounce;
  -webkit-animation-name: spsLeftBounce;
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate-reverse;
  }
  .sps-right {
    position: absolute;
    top: -8px;
    right: 0px;
    font-family: 'FontAwesome';
    content: '\f0da';
    font-size: 24px;
    color: #fff;
    display: block;
    z-index: 50;
    width: 50px;
    height: 40px;
    background: var(--headingcolor);
  }
  .sps-right:hover {
    cursor: pointer;
  }
  .sps-right i {
    position: relative;
    top: 3px;
    animation-name: spsRightBounce;
  -webkit-animation-name: spsRightBounce;
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate-reverse;
  }
  .inner-page-nav ul, .hole-page-nav ul {
    display: block;
    position: relative;
    width: 925em;
    height: 22px;
    transition: all 1000ms ease-in-out;
    -moz-transition: all 1000ms ease-in-out;
    -webkit-transition: all 1000ms ease-in-out;
  }
  .inner-page-nav ul li, .hole-page-nav ul li {
    float: left;
    width: calc(100vw - 100px);
    margin: 0px 100px 0px 0px;
  }
  .hole-content-holder {
    height: auto;
    background: #EFEEEE;
  }
  .hole-change-block {
    width: 100%;
    height: 45vh;
  }
  .hcb-gallery .galleryInner, .hcb-gallery .galleryInner img {
    height: 40vh !important;
  }
  .hole-fixed-block {
    width: 100%;
    height: auto;
    position: relative;
    height: 49vh;
    opacity: 0;
    transition: all 800ms ease-in-out;
    -moz-transition: all 800ms ease-in-out;
    -webkit-transition: all 800ms ease-in-out;
  }
  .active-hole .hole-fixed-block {
    opacity: 1;
  }
  .hole-main-content {
    height: 100vh;
  }
  .hole-nav {
    display: none;
  }
  .hfb-space {
    padding: 20px;
  }
  .hole-title {
    text-align: center;
  }
  .hole-title h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .hole-prev {
    left: 30px;
    top: 24px;
    right: auto;
  }
  .hole-next {
    right: 30px;
    top: 24px;
  }
  .hole-yards {
    margin: 15px auto 0px;
    width: 110px;
  }
  .hole-tip {
    margin-top: 15px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
  }
  .hole-yards > div {
    display: inline-block;
    width: 110px;
  }
  .hole-page-nav, .inner-page-nav {
    padding: 9px 0px;
  }
  .header-wrapper {
    min-height: 80px;
  }
  .header-logo {
    width: 55px;
  }
  #hamburger-icon {
    top: 5px;
  }
  .inner-page-wrapper {
    margin-top: 110px;
  }
  .hole-page-wrapper {
    margin-top: 80px;
  }
  .inner-page-nav {
    top: 80px;
  }
  .pro-staff-carousel-item .inner-two-col-equal.flex-row .itcec-space {
    font-size: 16px;
  }
  .pro-staff-two-col .itce-pic img {
    height: auto;
  }
  .pro-staff-two-col {
    height: 150vh;
  }
  .pro-staff-carousel-prev {
    bottom: 20px;
    left: 20px;
  }
  .pro-staff-carousel-next {
    bottom: 20px;
    right: 20px;
    left: auto;
  }
  .two-col-control-holder {
    width: 180px;
    margin: 0px auto;
  }
  .shop-brands-carousel {
    width: 280px;
  }
  .shop-brands-item {
    width: 280px;
  }
  .club-fitting-carousel {
    width: 280px;
  }
  .club-fitting-item {
    width: 280px;
  }
  .ti-flex {
    flex-direction: column;
  }
  .tif-pic {
    max-width: 100%;
    width: 100%;
    margin: 0px auto;
    text-align: center;
  }
  .tif-pic img {
    width: 100%;
    height: auto;
    max-width: 350px;
  }
  .tw-title {
    width: 100%;
    top: 0px;
  }
  .tw-control {
    top: 85px;
    left: 0px;
    right: 0px;
  }
  .tif-content {
    width: 100%;
    text-align: center;
  }
  .timeline-wrapper {
    height: 105vh;
  }
  .tw-main > div {
    height: 85vh;
  }
  .tw-control {
    width: 320px;
  }
  .twc-years {
    margin: 0px 30px;
  }
  .twc-prev {
    top: 12px;
  }
  .twc-next {
    top: 12px;
  }
  .tifc-space {
    margin-top: 140px;
    padding: 20px 20px 30px;
  }
  .twc-mover > div {
    width: 50px;
    line-height: 50px;
  }
  .body-class-members .dropdown-menu > li > a {
    padding: 10px 20px;
  }
  .body-class-members .content-wrapper {
    width: auto;
    margin: 0px 10px;
  }
  .body-class-members .header-space {
    width: auto;
    margin: 0px 10px;
  }
  .body-class-members .header-wrapper {
    min-height: 90px;
  }
  .php-weatherfg div.phone-weather .weatherImage {
    background: transparent;
  }
  .content-wrapper div.phone-weather .wind_direction .wind_speed1 {
    top: 7px;
  }
  body[class*="php-"] .header-logo, .body-class-members .header-logo, .body-class-visitorbooking .header-logo, .body-class-getawayletter .header-logo, [class*="body-class-setcoursestatus"] .header-logo, .body-class-opens .header-logo, .body-loginpage .header-logo, .invalid-page .header-logo {
    width: 64px;
    top: 5px;
  }
  body[class*="php-"] #hamburger-icon, .body-class-visitorbooking #hamburger-icon, .body-class-getawayletter #hamburger-icon, [class*="body-class-setcoursestatus"] #hamburger-icon, .body-class-opens #hamburger-icon, .body-loginpage #hamburger-icon, .body-class-members #hamburger-icon, .invalid-page #hamburger-icon {
    top: 10px;
  }
  [class*="body-class-setcoursestatus"] .content-wrapper a {
    word-break: break-all;
  }
  [class*="body-class-setcoursestatus"] .content-wrapper textarea {
    width: 260px !important;
  }
  .nav-wrapper {
    width: auto;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 6px;
    font-size: 14px;
  }
  .table td, .table th {
    font-size: 12px;
    padding: 2px;
  }
  .php-competition td a.btn {
    font-size: 12px;
    border-radius: 0px;
  }
  .php-hcaplist .btn-group {
    display: block;
    width: 200px;
  }
  .php-hcaplist .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .php-hcaplist .btn-group + .btn-group {
    margin-left: 0px;
  }
  .php-roundmgmt .dateperiods {
    width: 100%;
    float: none;
    text-align: left;
  }
  .php-analysis .pull-left {
    float: none;
  }
  .php-analysis .pull-right {
    float: none;
  }
  .php-analysis .btn-group {
    width: 200px;
    display: block;
  }
  .php-analysis .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .body-class-members .nav-section {
    width: 100%;
  }
  #globalwrap .btn-group .btn:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  #globalwrap .btn-group .btn:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .hcaplist > p:last-child a.btn {
    margin: 6px 0px;
  }
  .php-directory table a[href*="mailto"] {
    word-break: break-all;
  }
  .php-ongoing .global p:nth-of-type(1) {
    width: 250px;
  }
  .php-ongoing a.btn {
    width: 55px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  .php-ongoing p:nth-of-type(1) a.btn:first-child {
    margin-top: 0px;
  }
  #memteetimes td {
    font-size: 12px;
  }
  input[type*="submit"], a.btn, button.btn {
    letter-spacing: 0px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .body-class-members #globalwrap {
    overflow-x: scroll;
  }
  .body-public #globalwrap {
    overflow-x: auto;
  }
  body[class*="php-"] .nav-section, .body-class-members .nav-section, .body-class-visitorbooking .nav-section, .body-class-getawayletter .nav-section, [class*="body-class-setcoursestatus"] .nav-section, .body-class-opens .nav-section, .body-loginpage .nav-section, body[class*="match"]:not(.body-contentpage) .nav-section, .invalid-page .nav-section {
    width: auto;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .pro-staff-two-col {
    height: 225vh;
  }
  .tw-main {
    height: 190vh;
  }
  .tw-main > div {
    height: 190vh;
  }
  .timeline-wrapper {
    height: 190vh;
  }
  .hole-main-content {
    height: 210vh;
  }
  .hole-content-holder {
    height: auto;
  }
  .hole-change-block {
    height: 100vh;
    width: 100%;
  }
  .hole-fixed-block {
    height: 100vh;
    width: 100%;
    position: relative;
  }
  .hole-nav {
    display: none;
  }
  .hcb-gallery .galleryInner, .hcb-gallery .galleryInner img {
    height: 100vh !important;
  }
}

/* small mobile */

@media (min-width: 0px) and (max-width: 480px) {
  #login fieldset {
    transform: translateX(0px);
  }
  .nav-tabs > li > a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
  }
}

/* editor */

.php-ckeditor .landscape-scroller {
  position: relative;
  flex-direction: column;
}

.php-ckeditor .ls-block {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}

.php-ckeditor .ls-block-one-logo {
  position: relative;
  top: 0px;
  transform: translateY(0px);
}

.php-ckeditor .ls-block-one-title {
  position: relative;
  transform: translateY(0px);
  top: 0px;
  margin: 30px 0px;
  left: 0px;
  right: 0px;
}

.php-ckeditor .ls-block-one-explore {
  display: none;
}

.php-ckeditor .inner-two-col-equal.flex-row .itcec-space {
  position: relative;
  left: 0px;
  right: 0px;
  padding: 20px;
}

.php-ckeditor .inner-page-nav {
  position: relative;
  top: 0px;
}

.php-ckeditor .inner-page-wrapper {
  margin-top: 50px;
}

.php-ckeditor .page-space {
  padding: 0px 20px;
}

.php-ckeditor .inner-page-nav ul li {
  margin: 0px 15px;
}

.php-ckeditor .hole-main-content > div {
  height: auto;
  opacity: 1;
  visibility: visible;
  margin: 20px 0px;
  position: relative;
  left: 0px;
  z-index: 4;
}

.php-ckeditor .hole-main-content {
  height: auto;
}

.php-ckeditor .small-page-space {
  padding: 0px 20px;
}

.php-ckeditor .hff-club {
  margin-left: 20px;
}

.php-ckeditor .hff-contact {
  margin: 30px 30px 0px;
}

.php-ckeditor .hf-flex {
  font-size: 16px;
}

.php-ckeditor .hff-club {
  font-size: 20px;
  line-height: 30px;
}

.php-ckeditor .tf-flex {
  font-size: 16px;
}

.php-ckeditor .tff-contact {
  margin-left: 20px;
}

.php-ckeditor .tff-address {
  margin-left: 20px;
}

.php-ckeditor .tw-title {
  top: 40px;
}

.php-ckeditor .tw-control {
  right: 25px;
  top: 100px;
}

.php-ckeditor .tifc-space {
  margin-top: 200px;
  padding: 20px;
}

.php-ckeditor .pro-staff-carousel-wrapper {
  position: relative;
  width: auto;
}

.php-ckeditor .pro-staff-two-col {
  height: auto;
}

.php-ckeditor .pro-staff-carousel-item {
  width: 100%;
  margin-bottom: 30px;
}

.php-ckeditor .pro-staff-two-col .itce-pic img {
  height: auto;
}

.php-ckeditor .two-col-control-holder {
  display: none;
}

.php-ckeditor .club-fitting-carousel {
  width: auto;
  height: auto;
  margin-top: 40px;
}

.php-ckeditor .club-fitting-wrapper {
  position: relative;
  width: 100%;
  display: block;
}

.php-ckeditor .club-fitting-controls {
  display: none;
}

.php-ckeditor .club-fitting-item {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}

.php-ckeditor .shop-brands-carousel {
  width: auto;
  height: auto;
  margin-top: 40px;
}

.php-ckeditor .shop-brands-wrapper {
  position: relative;
  width: 100%;
  display: block;
}

.php-ckeditor .shop-brands-controls {
  display: none;
}

.php-ckeditor .shop-brands-item {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}

.php-ckeditor .hfb-space {
  padding: 30px;
}

.php-ckeditor .hole-prev {
  display: none;
}

.php-ckeditor .hole-next {
  display: none;
}

.php-ckeditor .hole-page-nav {
  margin-top: 30px;
}

/* custom template editor */

.php-ckeditor .content-wrapper {
  margin-top: 100px;
}

.php-ckeditor .extra-nav {
  position: fixed;
  top: 40px;
  background: #171717;
  padding: 5px 0px;
  width: 100%;
  z-index: 1010;
}

.php-ckeditor .extra-nav .container {
  position: relative;
  color: #fff;
}

.php-ckeditor .extra-nav a {
  display: inline-block;
  padding: 5px 8px;
  background: var(--headingcolor);
  margin-right: 8px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
}

.php-ckeditor .extra-nav a:hover, .php-ckeditor .extra-row a:focus {
  background: #000;
  color: #fff;
  cursor: pointer;
}

.php-ckeditor .extra-nav-tooltip i {
  color: var(--headingcolor);
  font-size: 24px;
  margin-left: 5px;
  position: relative;
  top: 4px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.php-ckeditor .extra-nav-tooltip i:hover {
  color: #fff;
  cursor: help;
}

.php-ckeditor .extra-nav-tooltip-text {
  display: block;
  color: #fff;
  margin-top: 10px;
  height: 0px;
  opacity: 0;
  font-size: 14px;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.php-ckeditor .extra-nav-tooltip:hover .extra-nav-tooltip-text {
  height: 58px;
  opacity: 1;
  visibility: visible;
}

.php-ckeditor.no-extra-nav .extra-nav {
  display: none;
}

.php-ckeditor .inserted-block {
  padding: 50px 0px;
}

.added-section-remove, .added-accordion-remove {
  position: absolute;
  top: -2px;
  right: 0px;
  width: 30px;
  height: 30px;
}

.added-section-remove .asr-cross, .added-accordion-remove .asr-cross {
  width: 30px;
  height: 2px;
  background: #f00;
  content: '';
  display: inline-block;
}

.added-section-remove:hover, .added-section-remove:focus, .added-accordion-remove:hover, .added-accordion-remove:focus {
  cursor: pointer;
}

.added-section-remove .asr-cross-1, .added-accordion-remove .asr-cross-1 {
  transform: rotate(45deg);
  position: absolute;
  top: 13px;
  left: 0px;
}

.added-section-remove .asr-cross-2, .added-accordion-remove .asr-cross-2 {
  transform: rotate(-45deg);
  position: absolute;
  top: 13px;
  left: 0px;
}

.added-section-move-up, .added-accordion-move-up {
  position: absolute;
  top: -2px;
  right: 100px;
  font-size: 24px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.added-section-move-up:hover, .added-accordion-move-up:hover {
  cursor: pointer;
}

.added-section-move-down, .added-accordion-move-down {
  position: absolute;
  top: -2px;
  right: 50px;
  font-size: 24px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.added-section-move-down:hover, .added-accordion-move-down:hover {
  cursor: pointer;
}

.php-ckeditor .wysiwyg-editable {
  border: 2px dashed #000;
}

.php-ckeditor .header-wrapper {
  display: none;
}

.php-ckeditor .additional-boxes .inserted-block:first-child .added-section-move-up {
  display: none;
}

.php-ckeditor .additional-boxes .inserted-block:last-child .added-section-move-down {
  display: none;
}

.php-ckeditor.no-extra-nav .extra-nav {
  display: none;
}

/* accordions custom page editor */

.php-ckeditor .added-section-accordion {
  display: inline-block;
  padding: 6px 10px;
  background: #257D86;
  color: #fff;
  margin-top: 10px;
}

.php-ckeditor .added-section-accordion:hover {
  background: #D1802F;
  cursor: pointer;
}

.php-ckeditor .inserted-accordion {
  position: relative;
  padding: 30px 0px;
}

/* end custom page templates */

.php-index #leftcontent i {
  font-size: 24px;
}

/* invalid page */

.invalid-page {
  background: url('/images/resources/royalcountydown/new-members-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.invalid-page #globalwrap h3::before {
  content: '\f071';
  font-family: 'FontAwesome';
  margin-right: 10px;
}

.invalid-page .nav-logo {
  display: none;
}

.invalid-page .content-wrapper {
  width: 1170px;
  margin: 0px auto;
}

.invalid-page .content-wrapper #globalwrap {
  background: rgba(255,255,255,0.9);
  padding: 20px;
  border: 2px solid var(--headingcolor);
  margin-bottom: 30px;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .invalid-page .content-wrapper {
    width: 940px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .invalid-page .content-wrapper {
    width: 724px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .invalid-page .content-wrapper {
    width: auto;
    margin: 0px 10px;
  }
}

/* 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;
  }
}

/* tee time home page fixes */

.php-index #globalwrap > .global {
  background: rgba(255,255,255,0.8);
  padding: 20px;
  border: 2px solid var(--headingcolor);
}

.php-index #globalwrap > .global #myupcoming {
  border: none;
  box-shadow: none;
}

/* google maps */

#map_container {
  width: 100% !important;
}

.gm-style-iw-d {
  max-height: 240px !important;
}

.gm-style .gm-style-iw-c {
    padding-right: 12px !important;
}

.php-login #emailresetform input[type*="text"] {
  margin-bottom: 0px;
}

.body-class-setcoursestatus input[type*="submit"], .php-search input[type*="submit"], .php-login #emailresetform input[type*="submit"]  {
  padding: 5px 12px;
}

/* slideshow titles */

.content-wrapper [class*="-slideshow"] .nivo-caption {
  bottom: 40px;
  text-align: center;
  background: transparent;
  opacity: 1;
  margin: 0px auto;
}

.content-wrapper [class*="-slideshow"] .nivo-caption h4 {
  color: #fff;
  font-family: var(--headingfont);
  display: inline-block;
  padding: 6px 15px;
  margin: 0px;
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  background: rgba(0,0,0,0.7);
}

.content-wrapper [class*="slideshow"] .nivo-caption p {
  color: white;
  text-shadow: 1px 1px #000;
}

@media (min-width: 0px) and (max-width: 767px) {
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    bottom: 40px;
  }
  #globalwrap [class*="-slideshow"] .nivo-caption h4 {
    font-size: 16px;
    line-height: 24px;
  }
}

/* forms */

.inner-page-wrapper form input {
  background: #ddd;
  border-radius: 0px;
  border: 1px solid var(--headingcolor);
  height: 30px;
  width: 90%;
  text-align: center;
}

.inner-page-wrapper form textarea {
  background: #ddd;
  border-radius: 0px;
  border: 1px solid var(--headingcolor);
  height: 90px;
  width: 90%;
  text-align: center;
}

.inner-page-wrapper form select {
  background: #ddd;
  border-radius: 0px;
  border: 1px solid var(--headingcolor);
  height: 30px;
  width: 90%;
  box-sizing: content-box;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-page-wrapper form input {
    width: 80%;
    text-align: center;
  }
  .inner-page-wrapper form textarea {
    width: 80%;
    text-align: center;
  }
  .inner-page-wrapper form select {
    width: 80%;
    text-align: center;
  }
}

.inner-page-wrapper form img.ui-datepicker-trigger {
  display: none;
}

.inner-page-wrapper form input[type*="submit"] {
  width: auto;
  height: auto;
  text-shadow: none;
  background: var(--headingcolor);
  color: #fff;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
}

.inner-page-wrapper form input[type*="submit"]:hover {
  background: #000;
  color: #fff;
}

.inner-intro ul, .inner-col ul, .inner-flex ul, .members-page ul, .cc-content ul, .inner-start ul, .ie-content-col ul, .hmf-content ul, .inner-full-added ul, .ie-col ul, .itcec-space ul {
  margin: 0px 0px 10px;
}

.inner-intro ul li, .inner-col ul li, .inner-flex ul li, .members-page ul li, .cc-content ul li, .inner-start ul li, .ie-content-col ul li, .hmf-content ul li, .inner-full-added ul li, .ie-col ul li, .itcec-space ul li {
  line-height: 28px;
  list-style: none;
  position: relative;
}

.ie-col ul li {
  margin-left: 15px;
  line-height: 28px;
}

.inner-intro ul li::before, .inner-col ul li::before, .inner-flex ul li::before, .members-page ul li::before, .cc-content ul li::before, .inner-start ul li::before, .ie-content-col ul li::before, .hmf-content ul li::before, .inner-full-added ul li::before, .ie-col ul li::before, .itcec-space ul li::before {
  content: '\f111';
  font-family: 'FontAwesome';
  font-size: 7px;
  margin-right: 6px;
  color: var(--headingcolor);
  position: relative;
  top: -3px;
}

@media (min-width: 768px) {
  .ie-col ul li::before {
    content: '\f111';
    font-family: 'FontAwesome';
    font-size: 7px;
    margin-right: 6px;
    color: var(--headingcolor);
    position: absolute;
    top: 0px;
    left: -15px;
  }
}

.inner-intro ol, .inner-full ol, .ie-col ol, .inner-start ol, .inner-full-added ol, .ie-col ol {
  margin: 0px 0px 10px;
}

.inner-intro ol li, .inner-full ol li, .ie-col ol li, .inner-start ol li, .inner-full-added ol li, .ie-col ol li  {
  line-height: 28px;
  list-style-position: inside;
}

.inner-intro .gallery-thumbs ul li::before, .inner-start .gallery-thumbs ul li::before, .inner-full-added .gallery-thumbs ul li::before {
  display: none;
}

.inner-page-wrapper form input[type*="radio"] {
  width: auto;
  margin: 0px;
}

.inner-page-wrapper form input[type*="checkbox"] {
  width: auto;
  margin: 0px;
}

.gallery-image .ss-controls a, .gallery-image .nav-controls a {
    text-transform: capitalize;
    letter-spacing: 0px;
    margin-bottom: 10px;
    text-decoration: none;
  }

@media (min-width: 980px) {
  .nav-controls .next {
    margin-left: 10px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .gallery-image .ss-controls a, .gallery-image .nav-controls a {
    text-transform: capitalize;
    letter-spacing: 0px;
    font-size: 14px;
    padding: 6px 10px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .gallery-image .ss-controls a, .gallery-image .nav-controls a {
    font-size: 12px;
    padding: 5px 10px;
  }
  .nav-controls .next {
    margin-left: 5px;
  }
}

.inner-intro table th, .inner-flex table th, .members-page table th, .inner-start table th, .htcc-space table th, .inner-full-added table th, .ie-col table th {
  padding: 6px;
  font-weight: 400;
  background: var(--headingcolor);
  color: #fff;
  text-align: center;
}

.itcec-space table tr:nth-child(odd), .inner-page-wrapper table tr:nth-child(odd) {
  background: var(--altpagebg);
}

.itcec-space table tr:nth-child(even), .inner-page-wrapper table tr:nth-child(even) {
  background: var(--pagebg);
}

.itcec-space table td {
  padding: 6px;
}

.htc-content .htcc-space table th {
  text-align: left;
}

.inner-intro table td, .inner-flex table td, .members-page table td, .inner-start table td, .htcc-space table td, .inner-full-added table td, .ie-col table td {
  padding: 6px;
}

@media (min-width: 768px) and (max-width: 979px) {
  .inner-intro table th, .members-page table th, .inner-start table th, .htcc-space table th, .ie-col table th {
    padding: 4px;
    font-size: 14px;
  }
  .inner-intro table td, .members-page table td, .inner-start table td, .htcc-space table td, ie-col table td, .itcec-space table td {
    padding: 4px;
    font-size: 14px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-intro table th, .members-page table th, .inner-start table th, .htcc-space table th, .ie-col table th {
    padding: 2px;
    font-size: 12px;
  }
  .inner-intro table td, .members-page table td, .inner-start table td, .htcc-space table td, .ie-col table td, .itcec-space table td {
    padding: 2px;
    font-size: 12px;
  }
}

[class*="setcoursestatus"] a.btn {
  margin: 5px 0px;
}

.php-boardcomps .row {
  width: 100%;
  margin: 0px;
}

.php-boardcomps .row .span12 {
  width: auto;
  margin: 0px;
}

.inner-page-wrapper .map_popup form input[type*="submit"] {
  margin-top: 5px;
}

/* slideshow dots and arrows */

.hole-page-wrapper .nivo-directionNav, .hole-page-wrapper .nivo-controlNav-Wrapper {
  display: none !important;
}

@media (min-width: 0px) and (max-width: 767px) {
  #myNavbar {
    margin-top: 80px;
  }
  .twc-mover {
    width: 270px;
  }
}

@media (min-width: 768px) and (max-width: 979px) and (orientation: landscape) {
  .ls-block-one-title h1 {
    font-size: 26px;
    line-height: 36px;
  }
  .lsb-content h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .lsb-content {
    font-size: 16px;
  }
  .nav-logo {
    display: none;
  }
   .body-public.body-contentpage .navbar .nav, .body-public.body-class-home .navbar .nav {
    text-align: left;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .ls-block-one-explore {
    bottom: 60px;
  }
  .ls-block-one-title {
    bottom: 100px;
    top: auto;
    transform: translateY(0%);
  }
  .ls-block-one-logo {
    display: none;
  }
  .body-class-home.body-public .header-wrapper {
    opacity: 1;
    visibility: visible;
  }
  #myNavbar {
    min-height: calc(100vh - 90px);
  }
  .nav-wrapper {
    height: calc(100vh - 150px);
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: landscape) {
  .shop-brands-carousel {
    width: 460px;
  }
  .shop-brands-item {
    width: 210px;
  }
  .club-fitting-carousel {
    width: 460px;
  }
  .club-fitting-item {
    width: 210px;
  }
}

.extra-nav-text {
  width: 110px;
  margin-right: 10px;
}

@media (min-width: 0px) and (max-width: 979px) {
  .body-class-members .navbar-inverse .nav-collapse .nav > li > a {
    color: var(--bodycolor);
  }
  .body-class-members .navbar-inverse .nav-collapse .nav > li > a:hover, .body-class-members .navbar-inverse .nav-collapse .nav > li > a:focus {
    color: var(--headingcolor);
  }
  body[class*="php-"] .header-logo, .body-class-members .header-logo, .body-class-visitorbooking .header-logo, .body-class-getawayletter .header-logo, [class*="body-class-setcoursestatus"] .header-logo, .body-class-opens .header-logo, .body-loginpage .header-logo, .invalid-page .header-logo {
    left: 0px;
    right: 0px;
    margin: 0px auto;
    float: none;
  }
  .tw-title h2 {
    margin-top: 20px;
  }
}

.inner-page-wrapper .galleryWrapper {
  max-width: 1000px;
  margin: 0px auto;
}

.inner-page-wrapper .galleryWrapper .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.inner-page-wrapper .galleryWrapper .galleryInner .nivo-directionNav {
  display: none;
}

.inner-page-wrapper .galleryWrapper .nivo-controlNav-Wrapper {
  display: none;
}

.inner-page-wrapper .galleryWrapper .galleryInner .nivo-caption h4 {
  color: #fff;
  font-size: 26px;
  line-height: 36px;
}

@media (min-width: 1200px) {
  .lsb-pic::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 300px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(14,63,104,0) 0%,rgba(14,63,104,0.7) 100%);
  }
}

/* content tweaks */

blockquote {
  border-color: var(--headingcolor);
}

blockquote p {
  font-size: 16px;
  line-height: 28px;
}

.inserted-block .news-wrapper {
  display: flex;
}

.inserted-block .news-item {
  flex: 1 1 0;
}

.inserted-block .news-item:nth-of-type(2) {
  margin: 0px 20px;
}

.inserted-block .news-item .media > .pull-left {
  float: none;
  margin: 0px;
  display: block;
  text-align: center;
}

.inserted-block .news-item img.img-polaroid {
  padding: 0px;
  border: none;
  box-shadow: none;
  margin: 0px auto 30px;
  height: 200px;
  width: 100%;
  max-width: 370px;
  object-fit: cover;
}

.inserted-block .news-item .media-body {
  text-align: left;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .inserted-block .news-item img.img-polaroid {
    height: 162px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .inserted-block .news-item img.img-polaroid {
    height: 130px;
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  .inserted-block .news-wrapper {
    flex-direction: column;
  }
  .inserted-block .news-item .media-body {
    text-align: center;
  }
  .inserted-block .news-item:nth-of-type(2) {
    margin: 25px 0px;
  }
}

@media (min-width: 1800px) {
  .page-url-contact #map_container {
    height: 700px !important;
  }
}

@media (min-width: 1600px) and (max-width: 1799px) {
  .page-url-contact #map_container {
    height: 600px !important;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .page-url-contact #map_container {
    height: 600px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .page-url-contact #map_container {
    height: 500px !important;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .page-url-contact #map_container {
    height: 520px !important;
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  .page-url-contact .itce-pic {
    width: 100%;
  }
}

.page-url-weather .weathers {
  display: flex;
  height: 40px;
}

.page-url-weather .weatherSingle {
  flex: 1 1 0;
  margin: 0px 10px;
  position: relative;
}

.page-url-weather .weatherDate {
  position: absolute;
  top: 0px;
  left: 0px;
}

.page-url-weather .weatherTemp {
  position: absolute;
  top: 0px;
  left: 65px;
}

.page-url-weather .weatherImage {
  position: absolute;
  top: 0px;
  left: 110px;
}

.page-url-weather .weatherImage i {
  font-size: 20px;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .page-url-weather .weatherSingle:last-of-type {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .page-url-weather .weatherSingle:nth-of-type(6) {
    display: none;
  }
  .page-url-weather .weatherSingle:last-of-type {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .page-url-weather .weathers {
    flex-direction: column;
    height: 345px;
    text-align: center;
  }
  .page-url-weather .weatherSingle {
    margin: 20px auto;
    width: 145px;
  }
}

@media (min-width: 768px) and (max-width: 979px) and (orientation: portrait) {
  .hcb-map img {
    height: 45vh;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: portrait) {
  .hcb-map img {
    height: 45vh;
  }
  .tifc-space {
    height: 36vh;
    overflow-y: auto;
  }
  .tif-pic {
    margin-top: 120px;
  }
  .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner, .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner img {
    height: 36vh !important;
  }
  .pro-staff-two-col {
    height: 126vh;
  }
  .pro-staff-carousel-item .inner-two-col-equal.flex-row .itcec-space {
    height: 45vh;
    overflow-y: auto;
  }
  .pro-staff-carousel-item .itce-pic {
    margin-top: 20px;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .hcb-map img {
    height: 100vh;
  }
  .pro-staff-carousel-item .inner-two-col-equal.flex-row .itcec-space {
    height: 50vh;
    overflow-y: auto;
  }
  .pro-staff-carousel-item .itce-pic {
    margin-top: 20px;
  }
  .pro-staff-two-col .itce-pic img {
    height: auto;
  }
  .pro-staff-carousel-next {
    right: 20px;
    left: auto;
  }
  .pro-staff-carousel-prev {
    left: 20px;
  }
  .two-col-control-holder {
    width: 180px;
    margin: 0px auto;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: landscape) {
  .tifc-space {
    height: 36vh;
    overflow-y: auto;
  }
  .tif-pic {
    margin-top: 20px;
  }
  .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner, .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner img {
    height: 90vh !important;
  }
}

/*.hole-tip {
  height: 140px;
  overflow-y: auto;
}

@media (min-width: 980px) and (max-width: 1399px) {
  .hole-tip {
    height: 132px;
  }
}

@media (min-width: 768px) and (max-width: 979px) and (orientation: portrait) {
  .hole-tip {
    height: 60px;
  }
}*/

/* mobile arrow animations */

@-webkit-keyframes spsRightBounce {
  from {
    right: 30px;
  }
  to {
    right: 10px;
  }
}

@keyframes spsRightBounce {
  from {
    right: 30px;
  }
  to {
    right: 10px;
  }
}

@-webkit-keyframes spsLeftBounce {
  from {
    left: -10px;
  }
  to {
    left: -30px;
  }
}

@keyframes spsLeftBounce {
  from {
    left: -10px;
  }
  to {
    left: -30px;
  }
}

.mff-copy br {
  display: none;
}

@media (min-width: 0px) and (max-width: 530px) {
  .mff-copy br {
    display: block;
  }
}

body[class*="php-"] #globalwrap, .body-class-visitorbooking #globalwrap, .body-class-getawayletter #globalwrap, [class*="body-class-setcoursestatus"] #globalwrap, .body-class-opens #globalwrap, .body-loginpage #globalwrap, body[class*="match"] #globalwrap, .invalid-page #globalwrap {
  margin-top: 160px;
  padding: 0px 200px;
}

@media (min-width: 1600px) and (max-width: 1799px) {
  body[class*="php-"] #globalwrap, .body-class-visitorbooking #globalwrap, .body-class-getawayletter #globalwrap, [class*="body-class-setcoursestatus"] #globalwrap, .body-class-opens #globalwrap, .body-loginpage #globalwrap, body[class*="match"] #globalwrap, .invalid-page #globalwrap {
    padding: 0px 150px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  body[class*="php-"] #globalwrap, .body-class-visitorbooking #globalwrap, .body-class-getawayletter #globalwrap, [class*="body-class-setcoursestatus"] #globalwrap, .body-class-opens #globalwrap, .body-loginpage #globalwrap, body[class*="match"] #globalwrap, .invalid-page #globalwrap {
    padding: 0px 100px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  body[class*="php-"] #globalwrap, .body-class-visitorbooking #globalwrap, .body-class-getawayletter #globalwrap, [class*="body-class-setcoursestatus"] #globalwrap, .body-class-opens #globalwrap, .body-loginpage #globalwrap, body[class*="match"] #globalwrap, .invalid-page #globalwrap {
    padding: 0px 50px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  body[class*="php-"] #globalwrap, .body-class-visitorbooking #globalwrap, .body-class-getawayletter #globalwrap, [class*="body-class-setcoursestatus"] #globalwrap, .body-class-opens #globalwrap, .body-loginpage #globalwrap, body[class*="match"] #globalwrap, .invalid-page #globalwrap {
    padding: 0px 25px;
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  body[class*="php-"] #globalwrap, .body-class-visitorbooking #globalwrap, .body-class-getawayletter #globalwrap, [class*="body-class-setcoursestatus"] #globalwrap, .body-class-opens #globalwrap, .body-loginpage #globalwrap, body[class*="match"] #globalwrap, .invalid-page #globalwrap {
    padding: 0px 20px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .hole-tip {
    height: 100%;
  }
}

@media (min-width: 0px) and (max-width: 480px) {
  .itce-pic {
    padding-bottom: 0px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .inner-page-nav ul li, .hole-page-nav ul li {
    width: calc(50vw - 50px);
    margin: 0px;
  }
}

.hole-fixed-block .hole-nav {
  display: none;
}

.hole-fixed-block .white, .hole-fixed-block .yellow, .hole-fixed-block .red {
  display: none
}

@media (min-width: 0px) and (max-width: 767px) {
  .hole-nav .sps-left {
    display: none;
  }
  .hole-nav .sps-right {
    display: none;
  }
  .hole-page-nav ul {
    width: auto;
  }
  .hole-page-nav ul li {
    width: auto;
    padding: 0px 10px;
    margin: 0px 10px;
  }
  .hole-page-nav .small-page-space {
    padding: 0px 20px;
  }
}

.ls-block-one-video video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.hcb-flyover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hide-header #myNavbar {
  margin-top: 0px;
  min-height: 100vh;
}

.body-class-home.hide-header .header-wrapper {
  top: -110px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .body-class-home.hide-header .header-wrapper {
    top: -80px;
  }
}

.menu-bg {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  background: #fff;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.show-menu .menu-bg {
  opacity: 1;
  visibility: visible;
  z-index: 800;
}

.menu-bg img {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 50%;
  object-fit: cover;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.menu-bg img.active-image {
  opacity: 1;
  visibility: visible;
}

/*.body-public.body-class-home.show-menu .header-wrapper {
  background: #fff;
}*/

.hcb-gallery > .wysiwyg-editable, .hcb-map > .hcb-space, .hcb-map .wysiwyg-editable {
  height: 100%;
}

.custom-carousel {
  height: 100%;
}

.custom-carousel-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.additional-carousel-items {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  left: 0px;
  align-items: center;
  height: 100%;
  transition: all 700ms ease-in-out;
  -moz-transition: all 700ms ease-in-out;
  -webkit-transition: all 700ms ease-in-out;
}

.custom-carousel-item {
  width: 100%;
  display: inline-block;
  flex-shrink: 0;
  height: 100%;
  transition: all 700ms ease-in-out;
  -moz-transition: all 700ms ease-in-out;
  -webkit-transition: all 700ms ease-in-out;
}

.custom-carousel-item .wysiwyg-editable {
  height: 100%;
}

.cci-pic {
  position: relative;
}

.custom-carousel-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.portrait-image .cci-pic img {
  max-height: 420px;
  height: 420px;
}

.cci-pic .cci-content {
  position: absolute;
  bottom: 30px;
  left: 10px;
  right: 10px;
  color: #fff;
}

.cci-content h4 {
  color: #fff;
}

.custom-carousel-controls {
  width: 150px;
  margin: 40px auto 0px;
  text-align: center;
}

.ccc-prev {
  text-align: left;
  font-size: 32px;
  display: inline-block;
  width: 40px;
}

.ccc-prev:hover {
  cursor: pointer;
}

.ccc-next {
  text-align: right;
  font-size: 32px;
  display: inline-block;
  width: 40px;
}

.ccc-next:hover {
  cursor: pointer;
}

.php-ckeditor .custom-carousel-item {
  position: relative;
  padding: 30px 0px;
  margin: 30px 20px;
}

.php-ckeditor .additional-carousel-items {
  display: block;
}

@media (min-width: 0px) and (max-width: 767px) {
  .tw-title {
    position: relative;
  }
  .tw-main {
    height: auto;
  }
  .tw-main > div {
    height: auto;
    position: absolute;
  }
  .tw-main > div.timeline-active {
    display: block;
    position: relative;
  }
  .timeline-wrapper {
    height: auto;
    margin-bottom: 5px;
  }
  .tifc-space {
    height: auto;
    overflow: hidden;
  }
  .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner, .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner img {
    height: 100% !important;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: landscape) {
  .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner {
    margin: 0px auto;
  }
  .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner, .inner-page-wrapper .tif-pic .galleryWrapper .galleryInner img {
    height: 100% !important;
    max-width: 350px;
  }
}

.inner-page-nav {
  display: none;
}

.inner-page-wrapper {
  margin-top: 110px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-page-wrapper {
    margin-top: 80px;
  }
  .hole-main-content > div {
    transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
  }
}

.page-ready.body-contentpage.body-public {
  overflow-x: hidden;
}

.page-ready.body-contentpage.body-public.show-menu {
  overflow-x: hidden;
}

.show-menu #hamburger-icon {
  position: fixed;
}

.inner-two-col-equal.flex-row .itcec-space {
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 50px 150px;
  transform: translateY(0px);
  display: flex;
  align-items: center;
  min-height: 600px;
}

.inner-two-col-equal.flex-row.flip-flex .itcec-space {
  left: 0px;
  right: 0px;
}

.itce-pic {
  position: relative;
}

.itce-pic .wysiwyg-editable {
  height: 100%;
}

@media (min-width: 980px) {
  .itce-pic img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 1500px) and (max-width: 1799px) {
  .inner-two-col-equal.flex-row .itcec-space {
    padding: 50px 100px;
  }
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .inner-two-col-equal.flex-row .itcec-space {
    padding: 50px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .inner-two-col-equal.flex-row .itcec-space {
    padding: 50px 25px;
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  .inner-two-col-equal.flex-row .itcec-space {
    padding: 50px 20px;
  }
}

.php-ckeditor .itce-pic img {
  position: relative;
}

.timeline-wrapper .galleryWrapper {
  position: relative;
}

.inner-page-wrapper .timeline-wrapper .galleryWrapper .nivo-controlNav-Wrapper, .inner-page-wrapper .galleryWrapper .nivo-controlNav-Wrapper {
  display: block;
  z-index: 12;
}

.galleryWrapper .nivo-controlNav-Wrapper a {
  background: transparent;
  border: 2px solid #fff;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
}

.galleryWrapper .nivo-controlNav-Wrapper a.active {
  background: #fff;
}

.cc-dots {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  z-index: 5;
  bottom: 30px;
  text-align: center;
}

.cc-dots ul {
  margin: 0px;
}

.cc-dots ul li {
  display: inline-block;
  border: 2px solid #fff;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
}

.cc-dots ul li:hover, .cc-dots ul li:focus {
  cursor: pointer;
}

.cc-dots ul li.active-pic {
  background: #fff;
}

/*@media (min-width: 0px) and (max-width: 767px) {
  .lsb-prev {
    display: none;
  }
  .lsb-next {
    display: none;
  }
  .ls-block-two .lsb-prev {
    display: none;
  }
}*/

.inner-full-added form input {
  width: calc(100% - 12px);
  border: none;
  box-shadow: none;
  height: 26px;
  border-bottom: 1px solid var(--headingcolor);
  background: transparent;
  color: var(--bodycolor);
  border-radius: 0px;
  text-align: left;
}

.inner-full-added form input:focus {
  box-shadow: none;
  border-color: var(--headingcolor);
}

.inner-full-added form {
  position: relative;
}

.inner-full-added form span {
  display: inline-block;
}

.page-url-contact form {
  max-width: 1000px;
  margin: 0px auto;
  text-align: left;
}

.page-url-contact .inner-full-added textarea {
  width: calc(100% - 12px);
  border: none;
  box-shadow: none;
  height: 72px;
  border-bottom: 1px solid var(--headingcolor);
  background: transparent;
  color: #fff;
  text-align: left;
  border-radius: 0px;
  color: var(--bodycolor);
}

.page-url-contact .inner-full-added label {
  font-weight: 600;
  margin-bottom: 20px;
}

.page-url-contact .inner-full-added form span:nth-of-type(1), .page-url-contact .inner-full-added form span:nth-of-type(4), .page-url-contact .inner-full-added form span:nth-of-type(6), .page-url-contact .inner-full-added form span:nth-of-type(8) {
  width: 49%;
  margin-right: 1%;
  margin-top: 20px;
}

.page-url-contact .inner-full-added form span:nth-of-type(2), .page-url-contact .inner-full-added form span:nth-of-type(5), .page-url-contact .inner-full-added form span:nth-of-type(7), .page-url-contact .inner-full-added form span:nth-of-type(9) {
  width: 49%;
  margin-left: 1%;
  margin-top: 20px;
}

.inner-full-added form span:nth-of-type(3), .inner-full-added form span:nth-of-type(10), .inner-full-added form span:nth-of-type(11) {
  display: block;
  margin-top: 20px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .page-url-contact .inner-full-added form span:nth-of-type(1), .page-url-contact .inner-full-added form span:nth-of-type(4), .page-url-contact .inner-full-added form span:nth-of-type(6), .page-url-contact .inner-full-added form span:nth-of-type(8) {
    width: 100%;
    margin-right: 0%;
    margin-top: 20px;
  }
  .page-url-contact .inner-full-added form span:nth-of-type(2), .page-url-contact .inner-full-added form span:nth-of-type(5), .page-url-contact .inner-full-added form span:nth-of-type(7), .page-url-contact .inner-full-added form span:nth-of-type(9) {
    width: 100%;
    margin-left: 0%;
    margin-top: 20px;
  }
}

.footer-link a {
  display: block;
  padding: 15px 0px;
  text-align: center;
  color: var(--headingcolor);
  font-family: var(--headingfont);
  font-size: 22px;
  line-height: 32px;
}

.page-footer > .wysiwyg-editable > br {
  display: none;
}

.show-menu .header-wrapper {
  background: transparent;
}

.show-menu .header-logo {
  opacity: 0;
}

.nav-logo {
  top: auto;
  bottom: 0px;
  width: 100%;
  background: #fff;
  display: block;
  padding: 10px 0px 20px;
  text-align: left;
  left: 0px;
  padding-left: 45px;
  z-index: 1000;
}

.nav-logo img {
  width: 100px;
}

.nav-wrapper {
  margin: 0px;
  padding-top: 80px;
  padding-bottom: 150px;
  height: calc(100vh - 230px);
}

.nav-status {
  position: absolute;
  bottom: 0px;
  padding: 15px 0px;
  background: var(--navbg);
  color: #fff;
  font-size: 14px;
  left: 45px;
  right: 45px;
}

.nav-status h3 {
  margin: 0px 0px 10px;
  color: #fff;
  font-size: 26px;
  line-height: 26px;
}

#myNavbar {
  margin-top: 0px;
  min-height: 100vh;
}

@media (min-width: 980px) and (max-width: 1399px) {
  #hamburger-icon {
    right: 40px;
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  .inner-two-col-equal.flex-row .itcec-space {
    min-height: initial;
  }
  .nav-status {
    left: 30px;
    right: 30px;
  }
  .nav-wrapper {
    padding-bottom: 160px;
    height: calc(100vh - 280px);
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .nav-status {
    position: relative;
    left: 0px;
    right: 0px;
  }
  .nav-wrapper {
    padding-bottom: 20px;
    height: calc(100vh - 110px);
  }
  .nav-logo {
    position: relative;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .nav-status {
    text-align: center;
  }
}

html {
  overscroll-behavior: none;
}

/* page loader hider */

.body-contentpage.body-public .page-loader {
  display: none;
}

.body-contentpage.body-public.page-url-championship_tour .page-loader {
  display: block;
}

.body-contentpage.body-public {
  overflow-y: scroll;
}

.body-contentpage.body-public.page-url-championship_tour {
  overflow: hidden;
}

.body-contentpage.body-public.page-url-championship_tour.page-ready {
  overflow-y: scroll;
}

.fsn-logo {
  display: none;
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 805;
  width: 100px;
}

.menu-bg .fsn-logo img {
  position: relative;
  width: 100px;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.body-public .nav-section .nav > li > a {
  position: relative;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.body-public .nav-section .nav > li:hover > a, .body-public .nav-section .nav > li.open > a, .body-public .nav-section .nav > li.current > a, .body-public .nav-section .nav > li.active > a {
  padding-left: 30px;
}

.body-public .nav-section .nav > li > a::before {
  content: '';
  display: inline-block;
  width: 0px;
  height: 2px;
  position: absolute;
  top: 24px;
  margin-right: 10px;
  left: 15px;
  background: var(--navactivelink);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.body-public .nav-section .nav > li:hover > a::before, .body-public .nav-section .nav > li.open > a::before, .body-public .nav-section .nav > li.current > a::before, .body-public .nav-section .nav > li.active > a::before {
  width: 8px;
}

@media (min-width: 980px) {
  .hole-page-nav {
    width: 28%;
    position: absolute;
    right: 0px;
    z-index: 20;
  }
  .hole-page-nav .small-page-space {
    padding: 0px 10px;
  }
  .hfb-space {
    padding-top: 100px;
  }
}

.hole-page-nav .selected-block {
  text-decoration: underline;
}

@media (min-width: 980px) {
  .inner-two-col-equal .itce-pic .galleryInner {
    min-height: 600px;
  }
}

@media (min-width: 768px) {
  .ls-block-one-title {
    text-shadow: 1px 1px #000;
  }
  .ls-block-one-logo {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .ls-block-one-title {
    bottom: 0px;
    left: 0px;
    padding: 0px 80px 20px 20px;
    font-size: 16px;
    width: calc(100% - 100px);
    top: auto;
    transform: translateY(0px);
    text-align: left;
  }
  .body-public .nav-section .nav > li > a::before {
    top: 22px;
  }
  .ls-block-one-logo {
    top: 25%;
    width: 100px;
  }
  .page-ready.body-class-home.body-public {
    overflow: hidden;
  }
  .ls-block {
    height: calc(100vh - 56px);
  }
  .lsb-pic img {
    height: calc(100vh - 56px);
  }
  .lsb-prev, .lsb-next {
    display: none;
  }
  .ls-block-two .lsb-prev {
    display: none;
  }
  .lf-trig {
    text-align: center;
    padding: 10px 0px;
  }
  .home-footer {
    padding: 10px 0px;
  }
  .hf-flex {
    flex-direction: column;
    text-align: center;
  }
  .hff-logo {
    width: 80px;
    margin: 0px auto;
  }
  .hff-club {
    margin: 20px 0px 0px;
    font-size: 20px;
    width: 100%;
  }
  .hff-contact {
    margin: 20px 0px 0px;
    width: 100%;
  }
  .hff-address {
    margin: 20px 0px 0px;
    width: 100%;
  }
  .lf-disp .landing-footer {
    height: 334px;
  }
  .inner-two-col-equal .itcec-space .wysiwyg-editable {
    width: 100%;
  }
  .start-block .itce-pic {
    max-width: initial;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: landscape) {
  .start-block .itce-pic, .start-block .itce-pic img, .itce-pic, .itce-pic img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
    max-width: initial;
  }
  .start-block .itce-mt {
    bottom: 140px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .lf-trig {
    padding: 10px 0px;
    text-align: center;
  }
  .home-footer {
    padding: 10px 0px;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .hf-flex {
    display: grid;
  }
  .hff-logo {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 1;
    width: 70px;
  }
  .hff-club {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 2;
    margin-top: 10px;
  }
  .hff-contact {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 3;
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }
  .hff-address {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 3;
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .lf-disp .landing-footer {
    height: 227px;
  }
}
 
.ls-block-one-title h1 {
  font-weight: 600;
  color: #fff;
}

@media (min-width: 980px) {
  .ti-flex {
    height: 100%;
  }
}

/* jcarousel */

.itce-pic .inner-carousel, .body-public .hole-carousel, .tif-pic .inner-carousel {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.body-public .inner-carousel .additional-boxes, .body-public .hole-carousel .additional-boxes {
  margin: 0px;
  padding: 0px;
  width: 10000px;
  position: absolute;
  height: 100%;
}

.body-public .inner-carousel .inserted-block {
  float: left;
  width: 50vw;
  margin: 0px;
  position: relative;
  height: 100%;
}

.body-public .hole-carousel .inserted-block  {
  float: left;
  width: 72vw;
  margin: 0px;
  position: relative;
  height: 100%;
}

.body-public .inner-carousel .inserted-block .inner-full-added, .body-public .inner-carousel .inserted-block .inner-full-added .page-space, .body-public .hole-carousel .inserted-block .inner-full-added, .body-public .hole-carousel .inserted-block .inner-full-added .page-space {
  padding: 0px;
  height: 100%;
}

.body-public .itce-pic img {
  left: 0px;
}

.body-public .inner-carousel-pagination, .body-public .hole-carousel-pagination {
  position: absolute;
  bottom: 50px;
  left: 10px;
  right: 10px;
  margin: 0px auto;
  font-size: 0px;
  z-index: 12;
  text-align: center;
}

.body-public .inner-carousel-pagination a, .body-public .hole-carousel-pagination a {
  background: transparent;
  display: inline-block;
  border: 2px solid #fff;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
}

.body-public .inner-carousel-pagination a.active, .body-public .hole-carousel-pagination a.active {
  background: #fff;
}

.hole-carousel .wysiwyg-editable {
  height: 100%;
}

.hole-carousel .wysiwyg-editable img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 0px) and (max-width: 979px) {
  .start-block .itce-pic, .itce-pic {
    width: 100%;
  }
  .body-public .inner-carousel .inserted-block {
    width: 100vw;
  }
}

@media (min-width: 768px) and (max-width: 979px) and (orientation: portrait) {
  .itce-pic .inner-carousel {
    height: 50vh;
  }
  .body-public .itce-pic img {
    height: 100%;
    object-fit: cover;
  }
  .body-public .hole-carousel .inserted-block {
    width: 100vw;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: portrait) {
  .itce-pic .inner-carousel {
    height: 40vh;
  }
  .body-public .itce-pic img {
    height: 100%;
    object-fit: cover;
  }
  .body-public .hole-carousel .inserted-block {
    width: 100vw;
  }
  .tif-pic {
    height: 40vh;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .itce-pic .inner-carousel {
    height: 90vh;
  }
  .body-public .hole-carousel .inserted-block {
    width: 100vw;
  }
  .tif-pic {
    height: 90vh;
    margin-top: 120px;
  }
  .tif-pic img {
    height: 100%;
    max-width: initial;
  }
}

.tif-pic .wysiwyg-editable {
  height: 100%;
}

.php-ckeditor .tw-main > div {
  width: 100%;
  margin-top: 50px;
}

@media (min-width: 0px) and (max-width: 979px) {
  .tifc-space {
    margin-top: 20px;
    height: 214px;
    position: relative;
    padding-bottom: 30px;
    transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
  }
  .tifc-space.expand-info {
    height: auto;
  }
  .tifc-extra {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    background: #fff;
    text-align: center;
  }
  .tifc-extra a {
    padding: 3px 30px;
  }
  .timeline-container {
    margin-bottom: 50px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .hole-fixed-block {
    height: auto;
  }
  .hole-tip {
    margin-top: 15px;
    height: 156px;
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
    padding-right: 0px;
    font-size: 16px;
    line-height: 28px;
    transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
  }
  .hole-tip.expand-info {
    height: auto;
  }
  .hole-page-wrapper .tifc-extra {
    background: #EFEEEE;
  }
  .hole-tip p {
    margin-bottom: 20px;
  }
  .hole-tip h5 {
    font-family: var(--bodyfont);
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  .hole-main-content {
    height: auto;
  }
  .body-public .active-hole {
    position: relative;
  }
  .tw-main > div, .twc-mover, .twc-mover > div {
    transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
  }
}

@media (min-width: 980px) {
  .tifc-extra {
    display: none;
  }
}

.body-class-home.body-public.show-menu.alter-logo .header-wrapper {
  background: transparent;
}

.body-class-home.body-public.show-menu.alter-logo .header-logo {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: portrait) {
  .hole-page-nav {
    position: absolute;
    top: 45vh;
    width: 100%;
    z-index: 30;
  }
  .hfb-space {
    padding-top: 65px;
  }
  .hole-prev {
    top: 68px;
  }
  .hole-next {
    top: 68px;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .hole-page-nav {
    position: absolute;
    top: 100vh;
    width: 100%;
    z-index: 30;
  }
  .hfb-space {
    padding-top: 65px;
  }
  .hole-prev {
    top: 68px;
  }
  .hole-next {
    top: 68px;
  }
  .body-class-home.body-public.alter-logo .header-wrapper {
    background: transparent;
  }
  .body-class-home.body-public.alter-logo .header-logo {
    opacity: 0;
  }
  .ls-block-one-video video {
    height: calc(100vh - 56px);
  }
}

@media (min-width: 768px) and (max-width: 979px) and (orientation: portrait) {
  .inner-two-col-equal.flex-row, .inner-two-col-equal.flex-row.flip-flex {
    flex-direction: column-reverse;
  }
  .start-block .itce-pic {
    position: relative;
  }
  .start-block .itce-mt {
    position: absolute;
    bottom: 130px;
    left: 20px;
    right: 20px;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    font-weight: 500;
    font-family: var(--headingfont);
  }
  .itce-pic {
    max-width: initial;
    width: 100%;
    height: 50vh;
  }
  .itce-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hole-page-wrapper .tifc-extra {
    display: none;
  }
  .hole-content-holder {
    height: calc(95vh - 110px);
  }
}

@media (min-width: 980px) {
  .extended-block .inner-two-col-equal.flex-row .itcec-space, .extend-block.start-block.inner-two-col-equal.flex-row .itcec-space {
    min-height: 700px;
  }
  .shrink-block .inner-two-col-equal.flex-row .itcec-space {
    min-height: 500px;
  }
  #map_container {
    height: 100% !important;
  }
}

.page-url-local_interest iframe #headerWrapper {
  display: none !important;
}

.inner-page-wrapper div.caption-container {
    height: auto;
  }

@media (min-width: 0px) and (max-width: 767px) {
  .ls-block-one-title {
    padding: 20px;
    text-align: center;
    width: calc(100% - 40px);
  }
  .nav-logo {
    padding-bottom: 60px;
  }
}

.hff-contact h5 {
  margin: 0px;
}

.hff-contact h5 a {
  background: linear-gradient(to left, var(--navactivelink) 50%, #000 50%) right;
  background-size: 202% 100%;
  color: #fff;
  margin-top: 0px;
  padding: 6px 20px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .body-public .inner-carousel-pagination a, .body-public .hole-carousel-pagination a {
    width: 8px;
    height: 8px;
    margin-right: 12px;
  }
  .gallery-holder .row-fluid .span8.pull-right {
    float: none;
  }
}

.php-ckeditor .hole-content-holder {
  margin-top: 50px;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .inner-two-col-equal.flex-row .itcec-space {
    min-height: 400px;
  }
  .extended-block .inner-two-col-equal.flex-row .itcec-space, .extend-block.start-block.inner-two-col-equal.flex-row .itcec-space {
    min-height: 600px;
  }
  .shrink-block .inner-two-col-equal.flex-row .itcec-space {
    min-height: 300px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .tifc-space {
    height: 154px;
  }
  #timeline-item-two .tifc-extra, #timeline-item-eleven .tifc-extra, #timeline-item-fourteen .tifc-extra, #timeline-item-sixteen .tifc-extra, #timeline-item-twenty-five .tifc-extra {
    display: none;
  }
   .inner-two-col-equal.flex-row, .inner-two-col-equal.flex-row.flip-flex {
    flex-direction: column-reverse;
    text-align: center;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .tifc-space {
    height: 184px;
  }
  #timeline-item-eleven .tifc-space {
    height: 200px;
  }
  #timeline-item-two .tifc-extra, #timeline-item-eleven .tifc-extra, #timeline-item-fourteen .tifc-extra, #timeline-item-sixteen .tifc-extra, #timeline-item-twenty-five .tifc-extra {
    display: none;
  }
}

@media (min-width: 980px) {
  .itcec-space > .wysiwyg-editable {
    width: 100%;
  }
  .tifc-space {
    padding-bottom: 70px;
  }
  .inner-page-wrapper .tifc-extra {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    background: #fff;
    text-align: center;
    display: block;
  }
  #timeline-item-two .tifc-extra, #timeline-item-four .tifc-extra, #timeline-item-five .tifc-extra, #timeline-item-eleven .tifc-extra, #timeline-item-twelve .tifc-extra, #timeline-item-thirteen .tifc-extra, #timeline-item-fourteen .tifc-extra, #timeline-item-sixteen .tifc-extra, #timeline-item-eighteen .tifc-extra, #timeline-item-twenty-one .tifc-extra, #timeline-item-twenty-two .tifc-extra, #timeline-item-twenty-three .tifc-extra, #timeline-item-twenty-four .tifc-extra, #timeline-item-twenty-five .tifc-extra, #timeline-item-twenty-six .tifc-extra, #timeline-item-twenty-seven .tifc-extra {
    display: none;
  }
}

@media (min-width: 1800px) {
  .body-public .inner-page-wrapper .tifc-space {
    height: 190px;
    position: relative;
    overflow: hidden;
  }
  .body-public .inner-page-wrapper .tifc-space.expand-info {
    height: auto;
  }
}

@media (min-width: 1400px) and (max-width: 1799px) {
  .body-public .inner-page-wrapper .tifc-space {
    height: 174px;
    position: relative;
    overflow: hidden;
  }
  .body-public .inner-page-wrapper .tifc-space.expand-info {
    height: auto;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .body-public .inner-page-wrapper .tifc-space {
    height: 161px;
    position: relative;
    overflow: hidden;
  }
  .body-public .inner-page-wrapper .tifc-space.expand-info {
    height: auto;
  }
  .body-public .inner-page-wrapper #timeline-item-twenty-two .tifc-space {
    height: 172px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .body-public .inner-page-wrapper .tifc-space {
    height: 146px;
    position: relative;
    overflow: hidden;
  }
  .body-public .inner-page-wrapper .tifc-space.expand-info {
    height: auto;
  }
  .body-public .inner-page-wrapper #timeline-item-twenty-one .tifc-space, .body-public .inner-page-wrapper #timeline-item-twenty-two .tifc-space {
    height: 172px;
  }
}

.start-block .row-fluid .gallery-thumbs {
  margin-left: 0px;
}

.gallery-thumbs .bottom {
  display: none;
}

.gallery-thumbs div.pagination a, .gallery-thumbs div.pagination span.current {
  background: linear-gradient(to left, var(--headingcolor) 50%, var(--navactivelink) 50%) right;
  background-size: 200% 100%;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  float: none;
}

.gallery-thumbs div.pagination a:hover, .gallery-thumbs div.pagination a:focus, .gallery-thumbs div.pagination span.current {
  background-position: left;
  color: #fff;
  text-decoration: none;
}

.gallery-thumbs ul.thumbs li {
  display: inline-block;
  float: none;
}

.body-contentpage.body-public.page-url-championship_gallery .page-loader, .body-contentpage.body-public.page-url-annesley_gallery .page-loader, .body-contentpage.body-public.page-url-club_gallery .page-loader, .body-contentpage.body-public.page-url-winter_gallery .page-loader, .body-contentpage.body-public.page-url-summer_gallery .page-loader, .body-contentpage.body-public.page-url-various_gallery .page-loader, .body-contentpage.body-public.page-url-various_videos .page-loader, .body-contentpage.body-public.page-url-championship_links .page-loader, .body-contentpage.body-public.page-url-contact .page-loader {
  display: block;
}

.gallery-option-bar {
  margin-bottom: 0px;
  text-align: center;
  padding: 40px 0px;
}

.gallery-option-bar ul {
  margin: 0px;
  font-size: 0px;
}

.gallery-option-bar ul li {
  display: inline-block;
  list-style: none;
  margin: 0px 10px;
}

.gallery-option-bar ul li a {
  background: linear-gradient(to left, var(--headingcolor) 50%, var(--navactivelink) 50%) right;
  background-size: 200% 100%;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 12px;
  text-decoration: none;
}

.gallery-option-bar ul li a:hover, .gallery-option-bar ul li a:focus, .gallery-option-bar ul li a.current-gallery {
  background-position: left;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.gallery-option-bar ul li::before {
  display: none;
}

.gallery-holder {
  position: relative;
  overflow-x: hidden;
}

.gallery-holder > div {
  position: absolute;
  top: 0px;
  right: -100%;
  transition: right 400ms ease-in-out;
  -moz-transition: right 400ms ease-in-out;
  -webkit-transition: right 400ms ease-in-out;
}

.gallery-holder .current-image-gallery {
  right: 0px;
  position: relative;
}

.gallery-thumbs #thumbs {
  float: none;
}

.gallery-thumbs ul.thumbs {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.gallery-thumbs div#thumbs div.top {
  height: auto;
}

@media (min-width: 768px) {
  .gallery-holder .row-fluid {
    display: flex;
    flex-direction: column;
  }
  .gallery-holder .row-fluid .span8 {
    float: none;
    margin: 0px auto;
    width: 66%;
  }
  .gallery-holder .row-fluid .span4 {
    float: none;
    margin: 20px auto 0px;
    width: 66%;
  }
}

@media (min-width: 1200px) and (max-width: 1449px) {
  .gallery-option-bar ul li a {
    font-size: 14px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .gallery-option-bar ul li {
    margin: 0px 5px;
  }
  .gallery-option-bar ul li a {
    font-size: 12px;
    padding: 10px 15px;
  }
}

@media (min-width: 600px) and (max-width: 979px) {
  .gallery-option-bar ul {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .gallery-option-bar ul li {
    margin: 5px;
  }
  .gallery-option-bar ul li a {
    font-size: 14px;
    padding: 10px;
    width: 145px;
  }
  .gallery-option-bar.show-opt ul {
    height: 110px;
  }
}

@media (min-width: 0px) and (max-width: 599px) {
  .gallery-option-bar {
    margin-bottom: 10px;
  }
  .gallery-option-bar ul li {
    display: inline-block;
    margin: 8px 5px;
  }
  .gallery-option-bar ul li a {
    width: 150px;
    font-size: 12px;
    padding: 6px 0px;
  }
  .gallery-holder h2 {
    margin-bottom: 10px;
  }
  .gallery-option-bar.show-opt ul {
    height: 140px;
  }
}

@media (min-width: 980px) {
  .gallery-toggle-bar {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  .gallery-option-bar ul {
    height: 0px;
    overflow: hidden;
    margin-top: 0px;
    transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
  }
  .gallery-option-bar.show-opt ul{
    margin-top: 20px;
  }
  .gallery-option-bar h5 {
    margin: 0px;
  }
  .gallery-option-bar h5 a {
    margin-top: 0px;
    padding: 6px 20px;
  }
  .gallery-toggle-bar h5 a:hover, .gallery-toggle-bar h5 a:focus {
    cursor: pointer;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .page-url-championship_links .inserted-block:first-of-type .itce-pic img {
    width: 450px;
  }
  .hole-page-wrapper .hcb-map .inserted-block:first-of-type img {
    max-width: 500px;
  }
  .hole-content-holder {
    background: #fff;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .ls-block .lsb-prev, .ls-block .lsb-next {
    display: none;
  }
  .lsb-content {
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .hole-page-wrapper .hcb-map .inserted-block:first-of-type img {
    max-width: 500px;
  }
  .hole-content-holder {
    background: #fff;
  }
  .page-url-championship_links .inserted-block:first-of-type .itce-pic img {
    width: 550px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .body-public .hole-carousel-pagination {
    bottom: 30px;
  }
}

.ls-block-one-video img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.itce-pic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auto-open .dropdown-menu {
  display: block;
}

.body-class-home.body-public #hamburger-icon .line {
  background: #fff;
}

.body-class-home.body-public.alter-logo #hamburger-icon .line, .body-class-home.body-public.show-menu #hamburger-icon .line {
  background: var(--headingcolor);
}

.body-contentpage a[name] {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}

.body-class-members.show-menu .header-wrapper {
  background: #fff;
}

.body-class-members.show-menu .header-logo {
  opacity: 1;
}

.body-class-members.show-menu .menu-bg {
  display: none;
}

.body-class-members.show-menu #hamburger-icon {
  position: absolute;
}

/* end anton styles */