/* anton styles */

/* fonts */

.scope-one-regular {
  font-family: "Scope One", serif;
  font-weight: 400;
  font-style: normal;
}

/* variables */

:root {
  --bodyfont: 'Scope One', serif;
  --headingfont: 'Scope One', serif;
  --headingcolor: #585F6C;
  --headingcolor2: #98B8A3;
  --membersheading: #34712C;
  --innerbg: #f0f0f0;
  --inneraltbg: #939EB4;
  --inneraltheading: #fff;
  --highlightcolor: #939EB4;
  --bodycolor: #2C3036;
  --headerbg: #98B8A3;
  --navbg: #98B8A3;
  --footerbg: #98B8A3;
  --navlink: #fff;
  --navactivelink: #000;
  --dropdownbg: #6a8072;
  --dropdownlink: #fff;
  --dropdownlinkactive: #000;
  --tablebg: #D1E2D7;
  --scorecardwhite: #fff;
  --scorecardyellow: #fc0;
  --scorecardred: #f00;
  --scorecardblack: #000;
}

.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(--headingcolor);
  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(--headingcolor);
  margin-bottom: 20px;
}

h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--headingcolor);
  font-family: var(--headingfont);
}

h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: var(--headingcolor2);
  color: #fff;
  display: inline-block;
  padding: 5px 30px;
  font-size: 16px;
  font-weight: 400;
  text-transform: initial;
  border-radius: 6px;
  margin-top: 10px;
  border: none;
  position: relative;
}

.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: var(--highlightcolor);
  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(--headingcolor2);
  text-decoration: none;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* header */

.header-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 125px;
  z-index: 1001;
  background: transparent;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.fix .header-wrapper {
  min-height: 100px;
}

.header-logo {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  text-align: center;
  width: 174px;
  display: none;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.fix .header-logo {
  width: 120px;
}

.header-links {
  position: absolute;
  top: 38px;
  left: 38px;
  background: #fff;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.fix .header-links {
  top: 0px;
  left: 0px;
}

.header-links a {
  display: inline-block;
  padding: 17px 0px;
  text-align: center;
  font-size: 18px;
  width: 225px;
  color: #fff;
  background: var(--headingcolor2);
}

.header-links a:hover {
  background: var(--highlightcolor);
}

/* nav */

.navbar {
  margin: 0px;
}

#hamburger-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 125px;
  height: 125px;
  background: var(--headingcolor2);
  border: none;
  margin: 0px;
  z-index: 20;
  border-radius: 0px;
  display: block;
  transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}

.fix #hamburger-icon {
  top: 0px;
  height: 100px;
  width: 100px;
}

#hamburger-icon:hover {
  background: var(--highlightcolor);
}

#hamburger-icon .line {
  height: 2px;
  background: #fff;
  left: 32px;
  width: 60px;
  position: absolute;
  transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}

#hamburger-icon:hover .line {
  color: #fff;
}

#hamburger-icon .line-1 {
  top: 44px;
}

#hamburger-icon .line-2 {
  top: 61px;
  opacity: 1;
}

#hamburger-icon .line-3 {
  top: 78px;
}

.show-menu #hamburger-icon .line-1 {
  top: 61px;
  transform: rotate(45deg);
}

.show-menu #hamburger-icon .line-2 {
  opacity: 0;
}

.show-menu #hamburger-icon .line-3 {
  top: 61px;
  transform: rotate(-45deg);
}

.fix.show-menu #hamburger-icon .line-1, .fix #hamburger-icon .line-1 {
  top: 33px;
}

.fix.show-menu #hamburger-icon .line-2, .fix #hamburger-icon .line-2 {
  top: 49px;
}

.fix #hamburger-icon .line-3 {
  top: 65px;
}

.fix.show-menu #hamburger-icon .line-1 {
  top: 49px;
}

.fix.show-menu #hamburger-icon .line-3 {
  top: 49px;
}

.fix #hamburger-icon .line {
  left: 20px;
}

#myNavbar {
  position: fixed;
  top: 0px;
  right: -500px;
  min-height: 100vh;
  background: var(--navbg);
  width: 400px;
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.show-menu #myNavbar {
  right: 0px;
}

.nav-wrapper {
  margin-top: 100px;
  padding: 12px 30px 20px;
  height: calc(100vh - 134px);
  overflow-y: auto;
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.fix .nav-wrapper {
  margin-top: 100px;
}

.navbar {
  margin: 0px;
}

.navbar .nav {
  float: none;
  margin: 0px;
}

.navbar .nav > li {
  float: none;
}

.navbar-inverse .nav > li > a {
  color: var(--navlink);
  text-shadow: none;
  font-size: 20px;
  position: relative;
  padding: 15px;
}

.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.nav-haslevel-2 > a::after {
  content: '\f107';
  font-family: 'FontAwesome';
  position: absolute;
  right: -4px;
  top: 11px;
  font-size: 20px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.navbar-inverse .nav > li.open.nav-haslevel-2 > a::after {
  transform: rotate(180deg);
}

.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: #fff;
  padding: 6px 20px;
  /*white-space: normal;*/
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > li.current > a {
  background: transparent;
  color: var(--navactivelink);
}

.nav-logo {
  position: relative;
  text-align: center;
  margin-top: 60px;
  background: var(--navbg);
}

.nav-logo img {
  width: 138px;
}

/* footer */

.public-footer {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 1100px;
  background-color: var(--innerbg);
  background-image: url('/images/resources/blankney/footer-bg.png');
  background-position: bottom;
  background-repeat: no-repeat;
}

.pf-address {
  margin-top: 40px;
}

.pf-contact {
  margin-top: 30px;
}

.pf-contact a {
  color: var(--bodycolor);
}

.pf-contact a:hover, .pf-contact a:focus {
  text-decoration: underline;
}

.pf-social {
  margin-top: 30px;
}

.pf-social img {
  width: 36px;
  position: relative;
  top: -1px;
}

.pf-social a {
  margin: 0px 10px;
  color: #000;
  font-size: 37px;
}

.pf-social a em {
  position: relative;
  left: 4.5px;
}

.pf-logo {
  margin-top: 50px;
}

.pf-logo a:nth-child(2) {
  margin: 0px 40px;
}

.pf-links {
  margin-top: 70px;
}

.pf-links a {
  color: var(--bodycolor);
}

.pf-links a:hover, .pf-links a:focus {
  text-decoration: underline;
}

.pf-copy {
  margin-top: 25px;
}

.pf-ig {
  margin-top: 40px;
}

.pf-ig img {
  width: 120px;
}

.body-public.body-class-home .members-footer, .body-public.body-contentpage .members-footer {
  display: none;
}

.members-footer {
  background: var(--footerbg);
  color: #fff;
  padding: 20px 0px;
  text-align: center;
}

.mf-links a {
  color: #fff;
}

.mf-links a:hover, .mf-links a:focus {
  text-decoration: underline;
}

.mf-copy {
  margin: 20px 0px;
}

.mf-ig {
  text-align: center;
}

.mf-ig img {
  width: 120px;
}

/* page */

#globalwrap {
  padding: 0px;
}

.page-space {
  padding: 0px 200px;
}

/* home */

.home-slideshow {
  position: relative;
}

.home-slideshow .galleryInner, .home-slideshow .galleryInner img {
  width: 100% !important;
  height: 100vh !important;
  object-fit: cover;
}

.hs-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  right: 10px;
  margin: 0px auto;
  z-index: 25;
  text-align: center;
}

.hs-content img {
  margin-bottom: 50px;
}

.hs-content h5 a {
  border: 1px solid #fff;
  padding: 2px 40px;
  margin: 0px 20px;
  font-size: 18px;
}

.hs-status {
  position: absolute;
  bottom: 0px;
  left: 38px;
  color: #fff;
  width: 200px;
  padding: 10px;
  z-index: 30;
  font-size: 18px;
  text-transform: initial;
  background: var(--highlightcolor);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.hs-status:hover {
  cursor: pointer;
  color: #2CFF00;
}

.hs-status i {
  position: absolute;
  right: 15px;
  top: 11px;
  font-size: 24px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.show-status .hs-status i {
  transform: rotate(180deg);
}

.show-status .hs-status {
  background: var(--highlightcolor);
}

.hs-status i {
  color: #fff;
}

.hss-content {
  display: none;
  color: #fff;
  font-size: 16px;
  text-transform: initial;
  transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -webkit-transition: all 0ms ease-in-out;
}

.hs-status:hover .hss-content {
  color: #fff;
}

.hss-content h3 {
  display: none;
}

.home-main {
  background: var(--innerbg);
}

.hm-one {
  padding: 130px 0px 60px;
}

.hm-two {
  background: var(--inneraltbg);
  color: #fff;
  padding: 70px 0px;
}

.hm-three {
  padding: 70px 0px 130px;
}

.hm-flex {
  display: flex;
}

.hm-flex.flip-flex {
  flex-direction: row-reverse;
}

.hm-flex > div {
  flex: 1 1 0;
}

.hmf-intro {
  margin-right: 50px;
}

.hmf-intro h1 {
  font-size: 70px;
  line-height: 90px;
  margin: 0px;
}

.hmf-intro p {
  font-size: 38px;
  line-height: 48px;
  color: var(--headingcolor);
}

.hmf-content {
  margin-right: 50px;
}

.hmf-content h2 {
  margin-top: 0px;
  font-size: 48px;
  line-height: 58px;
}

.flip-flex .hmf-content {
  margin-left: 50px;
  margin-right: 0px;
}

.hmf-pic {
  margin-left: 50px;
}

.hmf-pic img {
  border-radius: 50px;
}

.flip-flex .hmf-pic {
  margin-right: 50px;
  margin-left: 0px;
}

.hm-three .hm-flex:last-of-type {
  margin-top: 75px;
}

.hm-three .upcomingcomp a {
  text-transform: uppercase;
  color: var(--bodycolor);
}

.hm-three .upcomingcomp a:hover, .hm-three .upcomingcomp a:focus {
  text-decoration: underline;
}

.hm-three .announcedate {
  display: none;
}

/* home carousel */

.hm-two .page-space {
  padding-right: 100px;
}

.carousel-flex {
  display: flex;
  position: relative;
}

.cf-title {
  width: 300px;
}

.cf-title h2 {
  color: #fff;
  font-size: 58px;
  line-height: 68px;
  margin: 0px;
}

.carousel-holder {
  position: relative;
  width: 80%;
  overflow: hidden;
  height: 570px;
}

.carousel-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
}

.carousel-item {
  float: left;
  width: 400px;
  margin-right: 40px;
}

.carousel-pic {
  position: relative;
}

.carousel-pic img {
  border-radius: 50px;
}

.carousel-overlay {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 50px;
  background: rgba(0,0,0,0.5);
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.carousel-item:hover .carousel-overlay {
  background: transparent;
}

.carousel-item-content {
  position: absolute;
  bottom: 40px;
  left: 20px;
  right: 20px;
  color: #fff;
  text-shadow: 1px 1px #000;
  z-index: 5;
}

.carousel-item-content h4 {
  margin: 0px;
  color: #fff;
  text-transform: initial;
  font-weight: 400;
  padding: 10px 0px;
  font-family: var(--headingfont);
  font-size: 28px;
  line-height: 38px;
}

.caorusel-item-content p {
  margin: 0px;
  text-transform: uppercase;
}

.body-public [class*="editor-only"] {
  display: none;
}

.jcarousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  font-size: 38px;
  line-height: 71px;
  text-align: center;
  z-index: 10;
  background: #fff;
  border: 1px solid var(--highlightcolor);
  color: var(--highlightcolor);
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.jcarousel-next:hover {
  cursor: pointer;
  background: #000;
  color: #fff;
}

/* inner */

.inner-slideshow {
  position: relative;
}

.inner-slideshow .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.inner-main {
  background: var(--innerbg);
}

.inner-nav {
  background: var(--highlightcolor);
  padding: 10px 0px;
  text-align: center;
}

.inner-nav h2 {
  display: none;
}

.inner-nav ul {
  margin: 0px;
}

.inner-nav ul li {
  display: inline-block;
  margin: 0px 6px;
}

.inner-nav ul li a {
  color: #fff;
  padding: 15px 0px;
  display: inline-block;
  font-size: 18px;
}

.inner-nav ul li a:hover, .inner-nav ul li a:focus, .inner-nav ul li.current a {
  text-decoration: underline;
}

.inner-intro {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.inner-intro h1 {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 20px;
}

.inner-intro-row {
  margin-top: 20px;
  padding-bottom: 70px;
}

.flex-row {
  display: flex;
}

.flex-row.flip-flex {
  flex-direction: row-reverse;
}

.flex-row > div {
  flex: 1 1 0;
}

/* 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;
}

.additional-boxes {
  margin-top: 0px;
}

.inserted-block {
  position: relative;
  margin: 0px; /* change this padding to increase / decrease the gap between added sections */
}

.php-ckeditor .inserted-block {
  margin: 0px;
  padding: 30px 0px;
}

.inner-full-added {
  text-align: center;
  font-family: var(--headingfont);
}

.two-equal-added.flex-row {
  display: flex;
  text-align: center;
  font-family: var(--headingfont);
}

.two-equal-added.flex-row .ie-col {
  flex: 1 1 0;
}

.two-equal-added.flex-row .ie-col:first-child {
  margin-right: 20px;
}

.two-equal-added.flex-row  .ie-col:last-child {
  margin-left: 20px;
}

.is-two-col.flip-flex {
  flex-direction: row;
}

.two-unequal-added.flex-row {
  display: flex;
  font-family: var(--headingfont);
}

.two-unequal-added .main-col {
  width: 65%;
  margin-right: 20px;
}

.two-unequal-added .sidebar-col {
  width: 35%;
  margin-left: 20px;
}

.two-unequal-added .sidebar-col table h6 {
  margin: 0px;
}

.two-unequal-added.flip-flex .main-col {
  margin-right: 0px;
  margin-left: 20px;
}

.two-unequal-added.flip-flex .sidebar-col {
  margin-left: 0px;
  margin-right: 20px;
}

.three-equal-added.flex-row {
  display: flex;
  font-family: var(--headingfont);
}

.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;
  font-family: var(--headingfont);
}

.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;
  font-family: var(--headingfont);
}

.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;
}

@media (min-width: 0px) and (max-width: 767px) {
  .two-equal-added, .three-equal-added, .four-equal-added {
    flex-direction: column;
  }
  .two-equal-added.flex-row .ie-col:first-child {
    margin: 0px;
  }
  .two-equal-added.flex-row .ie-col:last-child {
   margin: 30px 0px 0px; 
  }
  .ie-col {
    text-align: left;
    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;
  }
}

/* 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:hover {
  cursor: pointer;
}

.accordion-object {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 14px 0px;
}

.accordion-title {
  position: relative;
}

.body-contentpage .accordion-title h3 {
  margin: 0px; 
  font-size: 24px;
  line-height: 34px;
  font-style: italic;
}

.body-contentpage .accordion-title h3 br {
  display: none;
}

.body-contentpage .accordion-title h3::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 14px;
  right: 80px;
  width: 30px;
  height: 2px;
  background: var(--headingcolor2);
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.body-contentpage .active-accord .accordion-title h3::before {
  transform: rotate(45deg);
}

.body-contentpage .accordion-title h3::after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 0px;
  right: 94px;
  height: 30px;
  width: 2px;
  background: var(--headingcolor2);
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.body-contentpage .active-accord .accordion-title h3::after {
  transform: rotate(45deg);
}

.body-contentpage .accordion-content {
  display: none;
  padding-top: 20px;
}

.additional-boxes .inserted-block:nth-child(odd) {
  background: var(--inneraltbg);
  color: #fff;
}

.additional-boxes .inserted-block:nth-child(odd) h1, .additional-boxes .inserted-block:nth-child(odd) h2, .additional-boxes .inserted-block:nth-child(odd) h3, .additional-boxes .inserted-block:nth-child(odd) h4, .additional-boxes .inserted-block:nth-child(odd) h5, .additional-boxes .inserted-block:nth-child(odd) h6 {
  color: #fff;
}

.two-added, .ib-three, .ib-four, .inner-full-added, .ib-two-col-pic {
  padding: 70px 0px;
}

.body-public.body-contentpage #global > br {
  display: none;
}

.additional-boxes h2 {
  font-size: 50px;
  line-height: 62px;
}

.extra-full-width {
  text-align: center;
  margin-bottom: 90px;
}

.ib-four .ie-col {
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50px;
}

.ib-four .ie-col .wysiwyg-editable {
  padding: 40px 20px;
}

.body-class-visitors_information .ib-four .ie-col {
  position: relative;
  min-height: 380px;
}

.body-class-visitors_information .ib-four .ie-col .wysiwyg-editable {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 40px);
  left: 0px;
  right: 0px;
}

.content-wrapper table thead tr, .content-wrapper table tbody tr th {
  background: var(--tablebg);
}

.content-wrapper table tbody tr:nth-child(odd) td {
  background: #fff;
}

.content-wrapper table tbody tr:nth-child(even) td {
  background: var(--tablebg);
}

.content-wrapper table th {
  text-align: left;
  text-transform: uppercase;
  font-weight: 400;
}

.content-wrapper table th, .content-wrapper table td {
  padding: 6px;
  color: var(--bodycolor);
}

/* course */

.hole-nav {
  background: var(--highlightcolor);
  padding: 10px 0px;
  text-align: center;
}

.hole-nav h2 {
  display: none;
}

.hole-nav ul {
  margin: 0px;
}

.hole-nav ul li {
  display: inline-block;
  margin: 0px 6px;
}

.hole-nav ul li a {
  display: inline-block;
  width: 34px;
  line-height: 34px;
  height: 34px;
  text-align: center;
  color: #fff;
  font-size: 18px;
}

.hole-nav ul li a:hover, .hole-nav ul li a:focus, .hole-nav ul li.current a {
  text-decoration: underline;
}

/*.inner-page-wrapper table.scorecard tr th:nth-child(11), .inner-page-wrapper table.scorecard tr th:nth-child(12), .inner-page-wrapper table.scorecard tr th:nth-child(13), .inner-page-wrapper table.scorecard tr th:nth-child(14), .inner-page-wrapper table.scorecard tr th:nth-child(15), .inner-page-wrapper table.scorecard tr th:nth-child(16) {
  display: none;


.inner-page-wrapper table.scorecard tr td:nth-child(11), .inner-page-wrapper table.scorecard tr td:nth-child(12), .inner-page-wrapper table.scorecard tr td:nth-child(13), .inner-page-wrapper table.scorecard tr td:nth-child(14), .inner-page-wrapper table.scorecard tr td:nth-child(15), .inner-page-wrapper table.scorecard tr td:nth-child(16) {
  display: none;
} */

.inner-page-wrapper table.scorecard .White {
  background: var(--scorecardwhite);
}

.inner-page-wrapper table.scorecard .Yellow {
  background: var(--scorecardyellow);
}

.inner-page-wrapper table.scorecard .Red {
  background: var(--scorecardred);
  color: #fff;
}

/* hole */

.hole-main {
  background: var(--innerbg);
  padding: 0px 0px 90px;
}

.hole-content {
  margin-top: 50px;
  text-align: center;
}

.hole-title h1 {
  margin: 0px;
  font-size: 60px;
  line-height: 70px;
}

.hole-yards {
  margin: 20px 0px 60px;
}

.hole-yards > div {
  display: inline-block;
  width: 270px;
  font-size: 20px;
}

.hole-yards .yellow {
  margin: 0px 70px;
}

.hole-yards .white::before {
  float: left;
  width: 29px;
  height: 29px;
  background: var(--scorecardwhite);
  display: inline-block;
  margin-right: 8px;
  content: '';
  border: 1px solid #000;
  position: relative;
  top: -0.5px;
}

.hole-yards .yellow::before {
  float: left;
  width: 29px;
  height: 29px;
  background: var(--scorecardyellow);
  display: inline-block;
  margin-right: 8px;
  content: '';
  border: 1px solid #000;
  position: relative;
  top: -0.5px;
}

.hole-yards .red::before {
  float: left;
  width: 29px;
  height: 29px;
  background: var(--scorecardred);
  display: inline-block;
  margin-right: 8px;
  content: '';
  border: 1px solid #000;
  position: relative;
  top: -0.5px;
}

.hole-content .hmf-content {
  text-align: left;
}

.hole-content .hmf-content h2 {
  text-align: center;
}

/* members */

body[class*="php-"], .body-class-members, .body-class-visitorbooking, .body-class-getawayletter, [class*="body-class-setcoursestatus"], .body-class-opens, .body-loginpage, .invalid-page {
  background: url('/images/resources/blankney/members-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

body[class*="php-"] .header-wrapper, .body-class-members .header-wrapper, .body-class-visitorbooking .header-wrapper, .body-class-getawayletter .header-wrapper, [class*="body-class-setcoursestatus"] .header-wrapper, .body-class-opens .header-wrapper, .body-loginpage .header-wrapper, .invalid-page .header-wrapper {
  background: var(--headerbg);
  width: 100%;
  min-height: 100px;
  position: relative;
}

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, .invalid-page .nav-section {
  margin-top: 0px;
  width: auto;
}

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 {
  float: left;
  margin-left: 0px;
  position: relative;
  top: 5px;
  display: block;
  width: 120px;
  height: auto;
  overflow: visible;
}

body[class*="php-"] .header-login, .body-class-members .header-login, .body-class-visitorbooking .header-login, .body-class-getawayletter .header-login, [class*="body-class-setcoursestatus"] .header-login, .body-class-opens .header-login, .body-loginpage .header-login {
  display: none;
}

body[class*="php-"] .header-left, .body-class-members .header-left, .body-class-visitorbooking .header-left, .body-class-getawayletter .header-left, [class*="body-class-setcoursestatus"] .header-left, .body-class-opens .header-left, .body-loginpage .header-left {
  display: none;
}

body[class*="php-"] .nav-logo, .body-class-members .nav-logo, .body-class-visitorbooking .nav-logo, .body-class-getawayletter .nav-logo, [class*="body-class-setcoursestatus"] .nav-logo, .body-class-opens .nav-logo, .body-loginpage .nav-logo {
  display: none;
}

body[class*="php-"] .nav-status, .body-class-members .nav-status, .body-class-visitorbooking .nav-status, .body-class-getawayletter .nav-status, [class*="body-class-setcoursestatus"] .nav-status, .body-class-opens .nav-status, .body-loginpage .nav-status {
  display: none;
}

body[class*="php-"] .header-status, .body-class-members .header-status, .body-class-visitorbooking .header-status, .body-class-getawayletter .header-status, [class*="body-class-setcoursestatus"] .header-status, .body-class-opens .header-status, .body-loginpage .header-status, .invalid-page .header-status {
  display: none;
}

body[class*="php-"] .header-links, .body-class-members .header-links, .body-class-visitorbooking .header-links, .body-class-getawayletter .header-links, [class*="body-class-setcoursestatus"] .header-links, .body-class-opens .header-links, .body-loginpage .header-links, .invalid-page .header-links {
  display: none;
}

body[class*="php-"] .header-right, .body-class-members .header-right, .body-class-visitorbooking .header-right, .body-class-getawayletter .header-right, [class*="body-class-setcoursestatus"] .header-right, .body-class-opens .header-right, .body-loginpage .header-right, .invalid-page .header-right {
  display: none;
}

body[class*="php-"] .top-header-left, .body-class-members .top-header-left, .body-class-visitorbooking .top-header-left, .body-class-getawayletter .top-header-left, [class*="body-class-setcoursestatus"] .top-header-left, .body-class-opens .top-header-left, .body-loginpage .top-header-left, .invalid-page .top-header-left {
  display: none;
}

body[class*="php-"] .header-top-right, .body-class-members .header-top-right, .body-class-visitorbooking .header-top-right, .body-class-getawayletter .header-top-right, [class*="body-class-setcoursestatus"] .header-top-right, .body-class-opens .header-top-right, .body-loginpage .header-top-right, .invalid-page .header-top-right {
  top: 10px;
  display: none;
}

body[class*="php-"] .header-info, .body-class-members .header-info, .body-class-visitorbooking .header-info, .body-class-getawayletter .header-info, [class*="body-class-setcoursestatus"] .header-info, .body-class-opens .header-info, .body-loginpage .header-info {
  margin-bottom: 10px;
}

body[class*="php-"] .navbar-inverse .nav > li, .body-class-visitorbooking .navbar-inverse .nav > li, .body-class-getawayletter .navbar-inverse .nav > li, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li, .body-class-opens .navbar-inverse .nav > li, .body-loginpage .navbar-inverse .nav > li, .body-class-members .navbar-inverse .nav > li, .invalid-page .navbar-inverse .nav > li {
  border-bottom: none;
  float: left;
}

body[class*="php-"] .navbar-inverse .nav > li > a, .body-class-visitorbooking .navbar-inverse .nav > li > a, .body-class-getawayletter .navbar-inverse .nav > li > a, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li > a, .body-class-opens .navbar-inverse .nav > li > a, .body-loginpage .navbar-inverse .nav > li > a, .body-class-members .navbar-inverse .nav > li > a, .invalid-page .navbar-inverse .nav > li > a {
  text-transform: capitalize;
  letter-spacing: 0px;
  padding: 10px 13px;
  font-size: 14px;
}

body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, .invalid-page .header-space {
  width: 1170px;
  margin: 0px auto;
}

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 {
  position: relative;
  display: none;
}

body[class*="php-"] .nav-wrapper, .body-class-members .nav-wrapper, .body-class-visitorbooking .nav-wrapper, .body-class-getawayletter .nav-wrapper, [class*="body-class-setcoursestatus"] .nav-wrapper, .body-class-opens .nav-wrapper, .body-loginpage .nav-wrapper, .invalid-page .nav-wrapper {
  margin-top: 0px;
  height: auto;
  padding: 0px;
  overflow-y: visible;
  position: relative;
  top: 27px;
  margin-left: 95px;
}

body[class*="php-"] .dropdown-menu, .body-class-members .dropdown-menu, .body-class-visitorbooking .dropdown-menu, .body-class-getawayletter .dropdown-menu, [class*="body-class-setcoursestatus"] .dropdown-menu, .body-class-opens .dropdown-menu, .body-loginpage .dropdown-menu, .invalid-page .dropdown-menu {
  position: absolute;
}

body[class*="php-"] .dropdown-menu > li > a, .body-class-members .dropdown-menu > li > a, .body-class-visitorbooking .dropdown-menu > li > a, .body-class-getawayletter .dropdown-menu > li > a, [class*="body-class-setcoursestatus"] .dropdown-menu > li > a, .body-class-opens .dropdown-menu > li > a, .body-loginpage .dropdown-menu > li > a, .invalid-page .dropdown-menu > li > a {
  padding: 3px 20px;
}

body[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, .invalid-page .content-wrapper {
  width: 1170px;
  margin: 0px auto;
}

body[class*="php-"] #myNavbar, .body-class-visitorbooking #myNavbar, .body-class-getawayletter #myNavbar, [class*="body-class-setcoursestatus"] #myNavbar, .body-class-opens #myNavbar, .body-loginpage #myNavbar, .body-class-members #myNavbar, .invalid-page #myNavbar {
  position: relative;
  top: 0px;
  right: 0px;
  min-height: auto;
  background: transparent;
  width: auto;
}

body[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"] .content-wrapper, .invalid-page .content-wrapper {
  width: 1170px;
  margin: 0px auto;
}

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: 110px;
  margin-bottom: 60px;
  border: 2px solid var(--headingcolor);
  padding: 20px;
  background: rgba(255,255,255,0.9);
}

.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: 220px; 
  }
  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: 120px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  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: 220px; 
  }
  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: 120px;
    font-size: 15px;
  }
}

/* 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: var(--headingcolor);
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  margin: 2px;
   transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

input[type*="submit"]:hover, a.btn:hover, button.btn:hover, input[type*="submit"]:focus, a.btn:focus, button.btn:focus {
  background: var(--headingcolor2);
  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(--headerbg);
  color: #fff;
  font-weight: 400;
}

.body-class-members .content-wrapper thead a {
  color: #000;
  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: 2px;
  right: 2px;
}

.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.php-login .header-wrapper .navbar-inverse .nav > li > a {
  font-size: 14px;
}

body[class*="php-"] .header-wrapper, .body-class-members .header-wrapper, .body-class-visitorbooking .header-wrapper, .body-class-getawayletter .header-wrapper, [class*="body-class-setcoursestatus"] .header-wrapper, .body-class-opens .header-wrapper, .body-loginpage .header-wrapper, body[class*="match"] .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: -15px;
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  .php-competition2 .content-wrapper table tbody tr:nth-child(2n+1) td {
    background: transparent;
  }
  .php-competition2 .content-wrapper table tbody tr:nth-child(2n) td {
    background: transparent;
  }
}

.body-class-members h1, .body-class-members h2, .body-class-members h3, .body-class-members h4, .body-class-members h5, .body-class-members h6, .body-class-members .content-wrapper a {
  color: var(--membersheading);
}

.php-weatherfg .content-wrapper table tbody tr:nth-child(2n) td, .php-weatherfg .content-wrapper table tbody tr:nth-child(2n+1) td, .php-weatherfg .content-wrapper table tbody tr:nth-child(2n) td {
  background: transparent;
  border: none;
}

.body-class-members .content-wrapper a.btn {
  color: #fff;
  background: var(--headingcolor2);
}

.body-class-members .content-wrapper a.btn:hover, .body-class-members .content-wrapper a.btn:focus {
  background: var(--headingcolor);
  color: #fff;
}

/* desktop responsive */

@media (min-width: 1600px) and (max-width: 1799px) {
  .page-space {
    padding: 0px 150px;
  }
  .carousel-item {
    width: 340px;
  }
  .carousel-holder {
    height: 480px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .page-space {
    padding: 0px 100px;
  }
  .hm-two .page-space {
    padding-right: 50px;
  }
  .carousel-item {
    width: 290px;
  }
  .carousel-holder {
    height: 410px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .page-space {
    padding: 0px 50px;
  }
  .hm-two .page-space {
    padding-right: 25px;
  }
  .carousel-item {
    width: 250px;
  }
  .carousel-holder {
    height: 353px;
  }
  .additional-boxes h2 {
    font-size: 44px;
    line-height: 56px;
  }
  .hmf-content {
    margin-right: 25px;
  }
  .flip-flex .hmf-content {
    margin-left: 25px;
    margin-right: 0px;
  }
  .hmf-pic {
    margin-left: 25px;
  }
  .flip-flex .hmf-pic {
    margin-right: 25px;
    margin-left: 0px;
  }
  .body-public.body-class-home #hamburger-icon, .body-public.body-contentpage #hamburger-icon {
    width: 80px;
    height: 80px;
  }
  .body-public.body-class-home #hamburger-icon .line, .body-public.body-contentpage #hamburger-icon .line {
    left: 20px;
    width: 40px;
  }
  .body-public.body-class-home #hamburger-icon .line-1, .body-public.body-contentpage #hamburger-icon .line-1 {
    top: 29px;
  }
  .body-public.body-class-home #hamburger-icon .line-2, .body-public.body-contentpage #hamburger-icon .line-2 {
    top: 39px;
  }
  .body-public.body-class-home #hamburger-icon .line-3, .body-public.body-contentpage #hamburger-icon .line-3 {
    top: 49px;
  }
  .show-menu.body-public.body-class-home #hamburger-icon .line-1, .show-menu.body-public.body-contentpage #hamburger-icon .line-1 {
    top: 39px;
  }
  .show-menu.body-public.body-class-home #hamburger-icon .line-3, .show-menu.body-public.body-contentpage #hamburger-icon .line-3 {
    top: 39px;
  }
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .page-space {
    padding: 0px 25px;
  }
  .hm-two .page-space {
    padding-right: 20px;
  }
  .carousel-item {
    width: 205px;
    margin-right: 20px;
  }
  .carousel-holder {
    height: 290px;
  }
  .additional-boxes h2, .hmf-content h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .hmf-content {
    margin-right: 25px;
  }
  .flip-flex .hmf-content {
    margin-left: 25px;
    margin-right: 0px;
  }
  .hmf-pic {
    margin-left: 25px;
  }
  .flip-flex .hmf-pic {
    margin-right: 25px;
    margin-left: 0px;
  }
  .hmf-intro h1 {
    font-size: 48px;
    line-height: 60px;
  }
  .hmf-intro p {
    font-size: 32px;
    line-height: 42px;
  }
  .hole-yards .yellow {
    margin: 0px 40px;
  }
  .carousel-holder {
    width: 670px;
  }
  .jcarousel-next {
    right: -10px;
  }
  body[class*="php-"] .navbar-inverse .nav > li > a, .body-class-visitorbooking .navbar-inverse .nav > li > a, .body-class-getawayletter .navbar-inverse .nav > li > a, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li > a, .body-class-opens .navbar-inverse .nav > li > a, .body-loginpage .navbar-inverse .nav > li > a, .body-class-members .navbar-inverse .nav > li > a, .invalid-page .navbar-inverse .nav > li > a {
    font-size: 12px;
    padding: 10px 8px;
  }
  body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, .invalid-page .header-space, body[class*="match"]:not(.body-contentpage) .header-space {
    width: 940px;
  }
  body[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, .invalid-page .content-wrapper, body[class*="match"]:not(.body-contentpage) .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;
    padding: 10px 8px;
  }
  .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;
  }
  .hmf-intro h1 {
    font-size: 46px;
    line-height: 56px;
  }
  .hm-two .page-space {
    padding-right: 20px;
  }
  .cf-title {
    margin-right: 20px;
  }
  .cf-title h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .carousel-holder {
    height: 304px;
  }
  .carousel-item {
    width: 215px;
    margin-right: 20px;
  }
  .jcarousel-next {
    width: 51px;
    height: 51px;
    line-height: 51px;
    font-size: 28px;
    right: 0px;
  }
  .hm-three .hm-flex {
    flex-direction: column;
  }
  .hm-three .hm-flex.flip-flex {
    flex-direction: column;
  }
  .hmf-content {
    margin-right: 0px;
    text-align: center;
  }
  .flip-flex .hmf-content {
    margin-left: 0px;
  }
  .hmf-content h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .hole-content .hmf-content {
    text-align: center;
  }
  .hmf-pic {
    margin: 30px 0px 0px;
    text-align: center;
  }
  .flip-flex .hmf-pic {
    margin: 30px 0px 0px;
  }
  .hmf-pic img {
    max-width: 500px;
    width: 100%;
  }
  .hole-yards > div {
    font-size: 18px;
    width: 210px;
  }
  .hole-yards .yellow {
    margin: 0px 20px;
  }
  .hole-content .flex-row.flip-flex {
    flex-direction: column;
  }
  .flex-row.flip-flex, .flex-row {
    flex-direction: column;
  }
  .four-equal-added.flex-row {
    display: grid;
  }
  .four-equal-added.flex-row .ie-col:first-child {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 1;
    grid-column-end: 1;
  }
  .four-equal-added.flex-row .ie-col:nth-child(2) {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 2;
    grid-column-end: 2;
    margin-right: 0px;
  }
  .four-equal-added.flex-row .ie-col:nth-child(3) {
    grid-row-start: 2;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 1;
    margin-top: 20px;
    margin-left: 0px;
  }
  .four-equal-added.flex-row .ie-col:last-child {
    grid-row-start: 2;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: 2;
    margin-top: 20px;
  }
  .hole-nav ul {
    width: 480px;
    margin: 0px auto;
  }
  .cf-title {
    width: 260px;
  }
  .carousel-holder {
    width: 450px;
  }
  .inner-slideshow .galleryInner, .inner-slideshow .galleryInner img {
    min-height: 400px;
    object-fit: cover;
  }
  .body-contentpage .accordion-title h3 {
    padding: 0px 40px;
  }
  body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, .invalid-page .header-space, body[class*="match"]:not(.body-contentpage) .header-space {
    width: 724px;
  }
  body[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"]:not(.body-contentpage) .content-wrapper, .invalid-page .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*="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;
  }
}

/* portrait tablet and mobile */

@media (min-width: 0px) and (max-width: 979px) {
  .header-links {
    top: 0px;
    left: 0px;
  }
  .header-links a {
    width: 170px;
    font-size: 16px;
  }
  #hamburger-icon {
    top: 0px;
    width: 100px;
    height: 100px;
  }
  #hamburger-icon .line-1 {
    top: 33px;
    left: 20px;
  }
  #hamburger-icon .line-2 {
    top: 49px;
    left: 20px;
  }
  #hamburger-icon .line-3 {
    top: 65px;
    left: 20px;
  }
  .show-menu #hamburger-icon .line-1 {
    top: 49px;
  }
  .show-menu #hamburger-icon .line-3 {
    top: 49px;
  }
  .body-public.body-class-home #hamburger-icon, .body-public.body-contentpage #hamburger-icon {
    width: 80px;
    height: 80px;
  }
  .body-public.body-class-home #hamburger-icon .line, .body-public.body-contentpage #hamburger-icon .line {
    left: 20px;
    width: 40px;
  }
  .body-public.body-class-home #hamburger-icon .line-1, .body-public.body-contentpage #hamburger-icon .line-1 {
    top: 29px;
  }
  .body-public.body-class-home #hamburger-icon .line-2, .body-public.body-contentpage #hamburger-icon .line-2 {
    top: 39px;
  }
  .body-public.body-class-home #hamburger-icon .line-3, .body-public.body-contentpage #hamburger-icon .line-3 {
    top: 49px;
  }
  .show-menu.body-public.body-class-home #hamburger-icon .line-1, .show-menu.body-public.body-contentpage #hamburger-icon .line-1 {
    top: 39px;
  }
  .show-menu.body-public.body-class-home #hamburger-icon .line-3, .show-menu.body-public.body-contentpage #hamburger-icon .line-3 {
    top: 39px;
  }
  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 {
    display: block;
  }
  body[class*="php-"] .nav-wrapper, .body-class-members .nav-wrapper, .body-class-visitorbooking .nav-wrapper, .body-class-getawayletter .nav-wrapper, [class*="body-class-setcoursestatus"] .nav-wrapper, .body-class-opens .nav-wrapper, .body-loginpage .nav-wrapper, .invalid-page .nav-wrapper {
    margin-left: 0px;
    top: 0px;
  }
  body[class*="php-"] .navbar-inverse .nav > li, .body-class-visitorbooking .navbar-inverse .nav > li, .body-class-getawayletter .navbar-inverse .nav > li, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li, .body-class-opens .navbar-inverse .nav > li, .body-loginpage .navbar-inverse .nav > li, .body-class-members .navbar-inverse .nav > li, .invalid-page .navbar-inverse .nav > li {
    float: none;
  }
  body[class*="php-"] .navbar-inverse .nav > li > a, .body-class-visitorbooking .navbar-inverse .nav > li > a, .body-class-getawayletter .navbar-inverse .nav > li > a, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li > a, .body-class-opens .navbar-inverse .nav > li > a, .body-loginpage .navbar-inverse .nav > li > a, .body-class-members .navbar-inverse .nav > li > a, .invalid-page .navbar-inverse .nav > li > a {
    font-weight: 400;
    font-size: 18px;
  }
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: var(--navlink);
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .nav > li.current > a {
    background: transparent;
    color: var(--navactivelink);
  }
  body[class*="php-"] .dropdown-menu, .body-class-members .dropdown-menu, .body-class-visitorbooking .dropdown-menu, .body-class-getawayletter .dropdown-menu, [class*="body-class-setcoursestatus"] .dropdown-menu, .body-class-opens .dropdown-menu, .body-loginpage .dropdown-menu, .invalid-page .dropdown-menu {
    position: relative;
    background: var(--dropdownbg);
  }
  .navbar-inverse .nav-collapse .dropdown-menu a {
    font-weight: 400;
    padding: 9px 15px;
  }
  .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus, .navbar-inverse .nav-collapse .dropdown-menu > li.current > a {
    background: transparent;
    color: var(--navactivelink);
  }
  body[class*="php-"] .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-members .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, .invalid-page .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
    font-size: 0px;
  }
  .body-contentpage .additional-boxes .inserted-block:nth-child(2n+1) .accordion-title h3::before  {
    right: 0px;
  }
  .body-contentpage .additional-boxes .inserted-block:nth-child(2n+1) .accordion-title h3::after  {
    right: 14px;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .page-space {
    padding: 0px 20px;
  }
  .header-wrapper {
    min-height: 100px;
  }
  .header-links {
    display: none;
  }
  .hs-content img {
    width: 150px;
    margin-bottom: 20px;
  }
  .hs-content h5 a {
    margin: 0px 5px;
    padding: 2px 20px;
  }
  .hm-flex {
    flex-direction: column;
  }
  .hmf-intro {
    margin-right: 0px;
    text-align: center;
  }
  .hmf-intro h1 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .hmf-intro p {
    font-size: 24px;
    line-height: 34px;
  }
  .hm-two .page-space {
    padding-right: 20px;
  }
  .carousel-flex {
    flex-direction: column;
  }
  .cf-title {
    width: auto;
    text-align: center;
  }
  .carousel-holder {
    width: 100%;
    max-width: 500px;
    height: 328px;
    margin: 40px auto 0px;
  }
  .carousel-item {
    width: 232px;
    margin-right: 20px;
  }
  .jcarousel-next {
    display: none;
  }
  .hm-flex.flip-flex {
    flex-direction: column;
  }
  .hmf-content {
    margin-right: 0px;
    text-align: center;
  }
  .flip-flex .hmf-content {
    margin-left: 0px;
  }
  .hmf-pic {
    margin: 30px 0px 0px;
    text-align: center;
  }
  .hmf-pic img {
    max-width: 400px;
    width: 100%;
  }
  .flip-flex .hmf-pic {
    margin: 30px 0px 0px;
  }
  .public-footer {
    padding-top: 40px;
    padding-bottom: 390px;
    background-size: contain;
  }
  .inner-slideshow .galleryInner, .inner-slideshow .galleryInner img {
    object-fit: cover;
    min-height: 180px;
  }
  .hs-status {
    position: relative;
    width: calc(100% - 20px);
    left: 0px;
  }
  .hs-status i {
    transform: rotate(180deg);
  }
  .show-status .hs-status i {
    transform: rotate(0deg);
  }
  .flex-row.flip-flex {
    flex-direction: column;
  }
  .inner-intro h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .accordion-content {
    overflow-x: auto;
  }
  .hole-yards > div {
    width: 230px;
  }
  .hole-yards .yellow {
    margin: 20px 0px;
  }
  .hole-content .hmf-content {
    text-align: center;
  }
  .pf-logo {
    max-width: 220px;
    margin: 50px auto 0px;
  }
  .pf-logo a {
    display: inline-block;
  }
  .pf-logo a:nth-child(2) {
    margin: 20px 0px;
  }
  .hole-nav ul {
    width: 320px;
    margin: 0px auto;
  }
  .php-competition2 .content-wrapper table tbody tr:nth-child(2n+1) td {
    background: transparent;
  }
  .php-competition2 .content-wrapper table tbody tr:nth-child(2n) td {
    background: transparent;
  }
  .inner-nav ul li {
    display: block;
    margin: 6px 0px;
  }
  .inner-nav ul li a {
    padding: 7px 0px;
  }
  body[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"]:not(.body-contentpage) .content-wrapper, .invalid-page .content-wrapper {
    width: auto;
    margin: 0px 10px;
  }
  body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, body[class*="match"]:not(.body-contentpage) .header-space, .invalid-page .header-space {
    width: auto;
    margin: 0px 10px;
  }
  .php-weatherfg div.phone-weather .weatherImage {
    background: transparent;
  }
  .content-wrapper div.phone-weather .wind_direction .wind_speed1 {
    top: 7px;
  }
  [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;
  }
}

/* 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;
  }
  #myNavbar {
    width: 100%;
    right: -550px;
  }
  .public-footer {
    padding-bottom: 245px;
    background-size: contain;
  }
  .carousel-holder {
    max-width: 300px;
    height: 403px;
  }
  .carousel-item {
    width: 285px;
    margin-right: 15px;
  }
}

/* editor */

.php-ckeditor .hs-content {
  position: relative;
  margin: 10px 0px;
  top: 0px;
  transform: translateY(0px);
  left: 0px;
  right: 0px;
}

.php-ckeditor .hs-status {
  display: none;
}

.php-ckeditor .page-space {
  padding: 0px 20px;
}

/* 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: 100;
}

.php-ckeditor .extra-nav a {
  display: inline-block;
  padding: 5px 10px;
  background: var(--headingcolor);
  margin-right: 5px;
  color: #fff;
  font-size: 13px;
}

.php-ckeditor .extra-nav a:hover, .php-ckeditor .extra-row a:focus {
  background: #fff;
  color: var(--headingcolor);
  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;
}

.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 */

/* extra */

.body-contentpage .additional-boxes .inserted-block:nth-child(2n+1) .accordion-title h3::before  {
  background: #fff;
}

.body-contentpage .additional-boxes .inserted-block:nth-child(2n+1) .accordion-title h3::after  {
  background: #fff;
}

.invalid-page .nav-logo {
  display: none;
}

.body-public.body-contentpage.invalid-page .members-footer {
  display: block;
}

.php-index #leftcontent i {
  font-size: 24px;
}

/* invalid page */

.invalid-page {
  background: url('/images/resources/blankney/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;
}

/* 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: 60px;
  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.8);
}

.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: 0px;
    display: none !important;
  }
  #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(--headingcolor2);
  height: 30px;
  width: 90%;
  text-align: center;
}

.inner-page-wrapper form textarea {
  background: #ddd;
  border-radius: 0px;
  border: 1px solid var(--headingcolor2);
  height: 90px;
  width: 90%;
  text-align: center;
}

.inner-page-wrapper form select {
  background: #ddd;
  border-radius: 0px;
  border: 1px solid var(--headingcolor2);
  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(--headingcolor2);
  color: #fff;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
}

.inner-page-wrapper form input[type*="submit"]:hover {
  background: var(--headingcolor);
  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 {
  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 {
  line-height: 28px;
  list-style: none;
}

.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 {
  content: '\f111';
  font-family: 'FontAwesome';
  font-size: 7px;
  margin-right: 6px;
  color: var(--headingcolor2);
  position: relative;
  top: -3px;
}

.inner-intro ol, .inner-full ol, .ie-col ol, .inner-start 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  {
  line-height: 28px;
  list-style-position: inside;
}

.inner-intro .gallery-thumbs ul li::before, .inner-start .gallery-thumbs ul li::before {
  display: none;
}

.additional-boxes .inserted-block:nth-child(2n+1) a {
  color: #000;
}

.additional-boxes .inserted-block:nth-child(2n+1) a:hover, .additional-boxes .inserted-block:nth-child(2n+1) a:focus {
  text-decoration: underline;
}

.additional-boxes .inserted-block:nth-child(2n+1) h5 a {
  color: #fff;
}

.additional-boxes .inserted-block:nth-child(2n+1) input {
  background: #fff;
}

.additional-boxes .inserted-block:nth-child(2n+1) select {
  background: #fff;
}

.additional-boxes .inserted-block:nth-child(2n+1) textarea {
  background: #fff;
}

.additional-boxes .inserted-block:nth-child(2n+1) input[type*="submit"] {
  background: var(--headingcolor2);
  color: #fff;
}

.additional-boxes .inserted-block:nth-child(2n+1) input[type*="submit"]:hover, .additional-boxes .inserted-block:nth-child(2n+1) input[type*="submit"]:focus {
  background: #000;
  color: #fff;
}

.inner-page-wrapper form input[type*="radio"] {
  width: auto;
  margin: 0px;
}

.inner-page-wrapper form input[type*="checkbox"] {
  width: auto;
  margin: 0px;
}

.additional-boxes .inserted-block:nth-child(2n+1) ul li::before {
  content: '\f111';
  font-family: 'FontAwesome';
  font-size: 7px;
  margin-right: 6px;
  color: #fff;
  position: relative;
  top: -3px;
}

@media (min-width: 980px) {
  .gallery-image .ss-controls a, .gallery-image .nav-controls a {
    text-transform: capitalize;
    letter-spacing: 0px;
    margin-bottom: 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 .controls {
    height: auto;
    width: 260px;
    margin: 0px auto 10px;
  }
  .gallery-image div.ss-controls {
    float: none;
  }
  .gallery-image .controls a {
    width: 202px;
  }
  .gallery-image div.nav-controls {
    float: none;
  }
}

.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 {
  padding: 6px;
  font-weight: 400;
  background: var(--tablebg);
  text-align: center;
}

.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 {
  padding: 6px;
}

.content-wrapper table tbody tr:nth-child(2n+1) th {
  background: #fff;
}

@media (min-width: 768px) and (max-width: 979px) {
  .inner-intro table th, .members-page table th, .inner-start table th, .htcc-space table th, .inner-full-added table th {
    padding: 4px;
    font-size: 14px;
  }
  .inner-intro table td, .members-page table td, .inner-start table td, .htcc-space table td, .inner-full-added 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, .inner-full-added table th {
    padding: 2px;
    font-size: 12px;
  }
  .inner-intro table td, .members-page table td, .inner-start table td, .htcc-space table td, .inner-full-added 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 */

.home-slideshow .nivo-controlNav-Wrapper, .inner-slideshow .nivo-controlNav-Wrapper {
  display: none;
}

.home-slideshow .nivo-directionNav, .inner-slideshow .nivo-directionNav {
  display: none !important;
}

@media (min-width: 768px) {
  .gallery-image .nav-controls a.next {
    margin-left: 10px;
  }
}

.home-slideshow > .wysiwyg-editable > br {
  display: none;
}

.inner-slideshow > .wysiwyg-editable > br {
  display: none;
}

@media (min-width: 0px) and (max-width: 1199px) {
  .home-slideshow .galleryInner, .home-slideshow .galleryInner img {
    height: calc(100vh - 56px) !important;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: portrait) {
  .nav-wrapper {
    margin-top: 80px;
  }
  .nav-logo {
    bottom: 56px;
    padding: 5px 0px;
    transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
  }
  .fix .nav-logo {
    bottom: 20px;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .nav-logo {
    margin-top: 30px;
  }
  .hs-content img {
    width: 130px;
    margin-bottom: 20px;
  }
  .header-links a {
    padding: 10px 0px;
  }
  .body-public.body-class-home #hamburger-icon, .body-public.body-contentpage #hamburger-icon {
    width: 60px;
    height: 60px;
  }
  .body-public.body-class-home #hamburger-icon .line, .body-public.body-contentpage #hamburger-icon .line {
    left: 10px;
    width: 40px;
  }
  .body-public.body-class-home #hamburger-icon .line-1, .body-public.body-contentpage #hamburger-icon .line-1 {
    top: 19px;
  }
  .body-public.body-class-home #hamburger-icon .line-2, .body-public.body-contentpage #hamburger-icon .line-2 {
    top: 29px;
  }
  .body-public.body-class-home #hamburger-icon .line-3, .body-public.body-contentpage #hamburger-icon .line-3 {
    top: 39px;
  }
  .show-menu.body-public.body-class-home #hamburger-icon .line-1, .show-menu.body-public.body-contentpage #hamburger-icon .line-1 {
    top: 29px;
  }
  .show-menu.body-public.body-class-home #hamburger-icon .line-3, .show-menu.body-public.body-contentpage #hamburger-icon .line-3 {
    top: 29px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .content-wrapper .teetime-datepicker .date {
    width: 220px;
  }
}

@media (min-width: 980px) {
  .jcarousel-next i {
    position: relative;
    top: 3px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .jcarousel-next i {
    position: relative;
    top: 2px;
  }
}

.php-ckeditor .carousel-holder {
  width: auto;
  position: relative;
  height: auto;
}

.php-ckeditor .carousel-wrapper {
  position: relative;
  width: auto;
}

.php-ckeditor .carousel-item {
  margin-bottom: 30px;
}

.php-ckeditor .carousel-item-content h4 {
  color: #fff;
}

.php-ckeditor .carousel-overlay {
  display: none;
}

.php-ckeditor .jcarousel-next {
  display: none;
}

.home-scroll:hover {
  cursor: pointer;
}

.body-class-tee_sponsors .additional-boxes .inserted-block:nth-child(2n+1), .body-class-meet_the_team .additional-boxes .inserted-block:nth-child(2n+1) {
  background: var(--innerbg);
  color: var(--bodycolor);
}

.body-class-tee_sponsors .additional-boxes .inserted-block:nth-child(2n+1) h1, .body-class-tee_sponsors .additional-boxes .inserted-block:nth-child(2n+1) h2, .body-class-tee_sponsors .additional-boxes .inserted-block:nth-child(2n+1) h3, .body-class-tee_sponsors .additional-boxes .inserted-block:nth-child(2n+1) h4, .body-class-tee_sponsors .additional-boxes .inserted-block:nth-child(2n+1) h5, .body-class-tee_sponsors .additional-boxes .inserted-block:nth-child(2n+1) h6 {
  color: var(--headingcolor);
}

.body-class-meet_the_team .additional-boxes .inserted-block:nth-child(2n+1) h1, .body-class-meet_the_team .additional-boxes .inserted-block:nth-child(2n+1) h2, .body-class-meet_the_team .additional-boxes .inserted-block:nth-child(2n+1) h3, .body-class-meet_the_team .additional-boxes .inserted-block:nth-child(2n+1) h4, .body-class-meet_the_team .additional-boxes .inserted-block:nth-child(2n+1) h5, .body-class-meet_the_team .additional-boxes .inserted-block:nth-child(2n+1) h6 {
  color: var(--headingcolor);
}

@media (min-width: 0px) and (max-width: 767px) {
  .body-contentpage .accordion-title h3 {
    padding: 0px 40px;
    font-size: 20px;
  }
  .flex-row {
    flex-direction: column;
  }
}

.body-class-join form span.customFormLine:nth-of-type(6) .customFormMultiCheckBoxWrapper .customFormCheckboxItem {
  display: inline-block;
  width: 150px;
}

.home-modal {
  background: rgba(0,0,0,0.6);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1002;
  width: 100%;
  height: 100vh;
  top: -100vh;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.remove-modal .home-modal {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.home-modal-body {
  max-width: 450px;
  background: #fff;
  border-radius: 8px;
  margin: 10px auto;
  padding: 20px;
  height: calc(100vh - 60px);
  overflow-y: scroll;
}

@media (min-height: 600px) {
  .home-modal-body {
    height: 560px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .home-modal-body {
    max-width: 450px;
  }
}

.home-modal-close:hover {
  cursor: pointer;
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .home-modal-body {
    max-width: 300px;
    height: calc(100vh - 60px);
  }
}

@media (min-width: 0px) and (max-width: 449px) and (orientation: portrait) {
  .home-modal-body {
    height: 460px;
  }
}

/* end anton styles */