/* anton styles */

/* variables */

:root {
  --bodyfont: 'Raleway', sans-serif;
  --headingfont: 'Playfair Display', serif;
  --headingcolor: #313C42;
  --headingcolor2: #313C42;
  --highlightcolor: #086d2d;
  --bodycolor: #666;
  --headerbg: #fff;
  --topfooterbg: #fff;
  --bottomfooterbg: #fff;
  --navlink: #fff;
  --navactivelink: #fc0;
  --dropdownbg: #000;
  --scorecardwhite: #eee;
  --scorecardyellow: #fc0;
  --scorecardred: #c80000;
  --scorecardgold: #d4af37;
  --scorecardblue: #0000c8;
  --scorecardsilver: #c0c0c0;
}

.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(--bodyfont);
}

h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--headingcolor2);
  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(--headingcolor);
  font-family: var(--bodyfont);
}

h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: transparent;
  color: var(--headingcolor);
  display: inline-block;
  padding: 6px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: 0px;
  margin-top: 10px;
  border: 1px solid #777;
  position: relative;
}

h5 a {
  padding: 8px 40px;
}

.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(--headingcolor);
  color: #fff;
  text-decoration: none;
}

a {
  color: var(--bodycolor);
  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: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* header styles */

.header-wrapper {
  position: fixed;
  min-height: 100px;
  z-index: 1001;
  width: 100%;
  top: 0px;
  left: 0px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.fix .header-wrapper, .show-menu .header-wrapper {
  background: rgba(0,0,0,0.7);
}

.header-logo {
  position: absolute;
  top: 40px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 230px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.fix .header-logo, .show-menu .header-logo {
  top: 10px;
  width: 120px;
}

.header-right {
  position: absolute;
  top: 108px;
  right: 125px;
  color: #fff;
  z-index: 20;
  text-shadow: 1px 1px #000;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.fix .header-right, .show-menu .header-right {
  top: 40px;
}

.header-right a {
  color: #fff;
}

.header-right a:hover, .header-right a:focus {
  color: #fc0;
}

/* navbar */

#hamburger-icon {
  position: absolute;
  top: 70px;
  right: 0px;
  width: 100px;
  height: 100px;
  background: transparent;
  border: none;
  z-index: 20;
  border-radius: 0px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.fix #hamburger-icon, .show-menu #hamburger-icon {
  top: 0px;
}

#hamburger-icon:hover {
  background: #000;
}

#hamburger-icon .line {
  height: 2px;
  background: #fff;
  left: 20px;
  position: absolute;
  box-shadow: 1px 1px #000;
  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: 36px;
  width: 48px;
}

#hamburger-icon .line-2 {
  top: 49px;
  width: 48px;
  opacity: 1;
}

#hamburger-icon .line-3 {
  top: 62px;
  width: 60px;
}

.show-menu #hamburger-icon .line-1 {
  top: 49px;
  transform: rotate(45deg);
  left: 25px;
}

.show-menu #hamburger-icon .line-2 {
  opacity: 0;
}

.show-menu #hamburger-icon .line-3 {
  top: 49px;
  width: 48px;
  transform: rotate(-45deg);
  left: 25px;
}

#myNavbar {
  position: fixed;
  top: 0px;
  right: -350px;
  min-height: 100vh;
  background: rgba(0,0,0,0.65);
  width: 350px;
  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: 100px;
  padding: 12px 30px 30px;
  height: calc(100vh - 126px);
  overflow-y: auto;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.navbar {
  margin: 0px;
}

.navbar .nav {
  float: none;
  margin: 0px;
}

.navbar .nav > li {
  float: none;
  border-bottom: 1px solid rgba(255,255,255,1);
}

.navbar-inverse .nav > li > a {
  color: #fff;
  position: relative;
}

.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: #000;
  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 {
  margin: 10px 0px 20px;
  text-align: center;
}

.nav-status h3 {
  color: #fff;
  margin: 0px 0px 20px;
  padding-top: 15px;
}

.nav-status {
  color: #fff;
}

/* footer */

.public-footer {
  padding: 120px 0px 0px;
}

.public-footer a {
  color: var(--bodycolor);
}

.public-footer a:hover, .public-footer a:focus {
  color: #000;
}

.pf-flex {
  display: flex;
}

.pf-address {
  width: 40%;
}

.pf-social a {
  font-size: 20px;
  margin-right: 8px;
}

.pf-logos {
  margin-top: 10px;
}

.pf-logos a:nth-of-type(1) img {
  width: 150px;
}

.pf-logos a:nth-of-type(2) img {
  width: 200px;
}

.pf-logos a:nth-of-type(3) img {
  width: 100px;
}

.pf-logo {
  width: 20%;
  text-align: center;
  margin: 0px 10px;
}

.pf-logo img {
  max-width: 170px;
  width: 100%;
}

.pf-newsletter {
  width: 40%;
}

.pf-newsletter h5 a {
  background: var(--headingcolor);
  color: #fff;
}

.pf-newsletter h5 a:hover, .pf-newsletter h5 a:focus {
  background: #000;
  color: var(--navactivelink);
}

.footer-line {
  margin-top: 85px;
  border-bottom: 1px solid #e6e6e6;
}

.members-footer {
  background: #fff;
  padding: 15px 0px;
}

.mf-flex {
  display: flex;
}

.mf-copy {
  padding-top: 9px;
  width: 75%;
}

.mf-copy a {
  color: var(--bodycolor);
}

.mf-copy a:hover, .mf-copy a:focus {
  color: #000;
}

.mf-ig-logo {
  width: 25%;
  text-align: right;
}

.mf-ig-logo img {
  width: 120px;
}

/* page */

#globalwrap {
  padding-top: 0px;
}

.page-space {
  padding: 0px 200px;
}

/* home */

.home-slideshow {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.home-slideshow .raw-slideshow, .home-slideshow .galleryInner {
  width: 100%;
  height: 100vh;
}

.home-slideshow .galleryInner img {
  width: 100% !important;
  height: 100vh !important;
  object-fit: cover;
}

.home-slideshow .raw-slideshow img {
  width: 100% !important;
  height: 100vh !important;
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: opacity 800ms ease-in-out;
  -moz-transition: opacity 800ms ease-in-out;
  -webkit-transition: opacity 800ms ease-in-out;
}

.home-slideshow .raw-slideshow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 8;
  background: rgba(0,0,0,0.3);
}

.home-slide-title {
  position: absolute;
  left: 20px;
  right: 20px;
  margin: 0px auto;
  z-index: 12;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
}

.home-slide-title h3 {
  margin: 0px 0px 5px;
  color: #fff;
  font-size: 28px;
  line-height: 28px;
  font-family: var(--headingfont);
}

.home-slide-title h2 {
  text-transform: uppercase;
  margin: 0px;
  color: #fff;
  font-size: 44px;
  line-height: 54px;
}

.home-slide-title h1 {
  text-transform: uppercase;
  margin: 0px;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  text-shadow: 1px 1px #000;
}

.home-status-bar {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  text-align: center;
  z-index: 10;
  color: #fff;
}

.home-status-bar h3 {
  display: none;
}

.home-status-bar .weathers {
  display: inline-block;
  position: relative;
  top: -20px;
}

.home-status-bar .weatherSingle {
  width: 135px;
  font-size: 14px;
  position: relative;
  display: inline-block;
}

.home-status-bar .weatherImage {
  width: 32px;
  position: absolute;
  top: -2px;
  left: 100px;
}

.home-status-bar .weatherDate {
  position: absolute;
  top: 0px;
  left: 0px;
}

.home-status-bar .weatherTemp {
  position: absolute;
  top: 0px;
  left: 55px;
}

.home-status-bar .afterWeather {
  display: none;
}

.home-status-bar .courseStatus {
  display: inline-block;
}

.home-status-bar .statuses .status {
  display: none;
}

.home-status-bar .statuses .status:nth-child(2), .home-status-bar .statuses .status:nth-child(3) {
  display: inline-block;
  font-size: 14px;
}

.slider_progress-bar {
  position: absolute;
  bottom: 70px;
  left: 100px;
  right: 100px;
  height: 5px;
  z-index: 999;
  border-radius: 10px;
  background: rgba(0,0,0,0.5);
  display: none;
}

.slider_progress-bar_bar {
  height: 100%;
  background: #fff;
}

.home-slideshow::after {
  content: '';
  position: absolute;
  background: rgba(0,0,0,0.4);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.home-intro {
  max-width: 1000px;
  margin: 0px auto;
  padding: 120px 20px 240px;
  text-align: center;
  background: url('/images/resources/essendon/essendon-logo-faded.png');
  background-repeat: no-repeat;
  background-position: center;
}

.home-intro h1 {
  font-size: 40px;
  line-height: 50px;
  margin-top: 0px;
}

.home-intro h5 a {
  margin-top: 30px;
}

/* carousel */

.carousel-block {
  margin-bottom: 60px;
}

.carousel-content {
  position: relative;
  width: calc(100vw - 200px);
  margin-bottom: 20px;
}

.carousel-holder {
  margin: 0px auto;
  height: 510px;
  left: 0px;
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
}

.carousel-large-item {
  float: left;
  width: 490px;
  margin-right: 15px;
}

.carousel-small-item {
  width: 327px;
  float: left;
  margin-right: 15px;
}

.body-public [class*="editor-only"] {
  display: none;
}

.carousel-controls {
  text-align: right;
  clear: both;
}

.carousel-prev {
  text-align: left;
  display: inline-block;
  margin-right: 40px;
}

.carousel-prev:hover {
  cursor: pointer;
}

.carousel-next {
  display: inline-block;
}

.carousel-next:hover {
  cursor: pointer;
}

.logo-row {
  background: #f5f5f5;
  padding: 50px 0px;
}

.logo-flex {
  display: flex;
  align-items: center;
}

.logo-item {
  text-align: center;
  flex: 1 1 0;
}

/* inner */

.body-contentpage #global > br {
  display: none;
}

.body-contentpage .carousel-block {
  margin-top: 70px;
}

.inner-nav {
  text-align: center;
}

.inner-nav h2 {
  display: none;
}

.inner-nav ul {
  padding: 25px 0px;
  margin: 0px;
}

.inner-nav ul li {
  display: inline-block;
  margin: 0px 15px;
}

.inner-nav ul li a {
  color: #333;
  text-transform: uppercase;
}

.inner-nav ul li.current a, .inner-nav ul li a:hover, .inner-nav ul li a:focus {
  color: #9c9c9c;
}

.inner-main {
  background: url('/images/resources/essendon/essendon-logo-faded.png');
  background-repeat: no-repeat;
  background-position: center 40px;
}

.inner-full {
  text-align: center;
  max-width: 1000px;
  padding: 0px 20px;
  margin: 0px auto 30px;
}

.inner-full p {
  margin-bottom: 30px;
}

.body-root-weddings h1, .body-root-weddings h2, .body-root-weddings h3, .body-root-weddings h4, .body-root-weddings h5, .body-root-weddings h6, .body-root-weddings h5 a {
  color: #97B09B;
  border-color: #97B09B;
}

.body-root-weddings .home-slide-title h1 {
  color: #fff;
}

.body-root-weddings .pf-newsletter h4 {
  color: var(--headingcolor2);
}

.body-root-weddings h5 a:hover, .body-root-weddings h5 a:focus {
  background: #97B09B;
  color: #fff;
}

.body-root-weddings .page-footer h5 a {
  color: #fff;
}

.body-root-weddings .page-footer h5 a:hover, .body-root-weddings .page-footer h5 a:focus {
  color: #fff;
}

.body-root-weddings .inner-main {
  background: url('/images/resources/essendon/essendon-logo-wedding-faded-new.png');
  background-repeat: no-repeat;
  background-position: center 40px;
}

/* inner added boxes style */

.additional-boxes {
  max-width: 1200px;
  padding: 0px 20px;
  margin: 0px auto;
}

.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: 30px 0px; /* change this padding to increase / decrease the gap between added sections */
}

.inner-full-added {
  text-align: center;
}

.body-public .inserted-block {
  padding: 20px 0px;
}

.two-equal-added.flex-row {
  display: flex;
}

.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;
}

.two-unequal-added.flex-row {
  display: flex;
}

.two-unequal-added .main-col {
  width: 70%;
  margin-right: 20px;
}

.two-unequal-added .sidebar-col {
  width: 30%;
  margin-left: 20px;
}

.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;
}

.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;
}

.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;
}

/* course */

.body-public .home-slideshow > .wysiwyg-editable > br {
  display: none;
}

.hole-slide-logos {
  position: absolute;
  bottom: 110px;
  left: 100px;
  z-index: 26;
}

.hole-slide-logos img {
  margin-right: 12px;
}

.scorecard-box {
  padding: 20px 0px 30px;
  text-align: center;
}

.scorecard-box a {
  background: transparent;
  color: var(--headingcolor);
  display: inline-block;
  padding: 6px 25px;
  font-weight: 400;
  font-family: var(--headingfont);
  font-size: 22px;
  position: relative;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.scorecard-box a:hover, .scorecard-box a.disp {
  background: transparent;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.scorecard-box a.disp:hover {
  color: #000;
}

.scorecard-box #score-open-link.hide {
  display: none;
}

.scorecard-box #score-close-link {
  display: none;
}

.scorecard-box #score-close-link.disp {
  display: inline-block;
}

.scorecard-box .scorecard-content {
  display: none;
  padding-top: 60px;
}

.scorecard-open > a#score-open-link::after {
    position: absolute;
    content: '\f107';
    font-family: 'FontAwesome';
    right: 5px;
}

.scorecard-open > a#score-close-link::after {
    position: absolute;
    content: '\f106';
    font-family: 'FontAwesome';
    right: 5px;
}

.inner-page-wrapper .table th, .inner-page-wrapper .table td {
  text-align: center;
  border: 2px solid var(--headingcolor);
}

.inner-page-wrapper .scorecard-content th:nth-child(2), table.scorecard td:nth-child(2) {
  background: var(--scorecardwhite);
  color: black;
}

.inner-page-wrapper .scorecard-content th:nth-child(5), table.scorecard td:nth-child(5) {
  background: var(--scorecardyellow);
  color: black;
}

.inner-page-wrapper .scorecard-content th:nth-child(8), table.scorecard td:nth-child(8) {
  background: var(--scorecardred);
  color: white;
}

.inner-page-wrapper .scorecard-content th:nth-child(11), table.scorecard td:nth-child(11) {
  background: var(--scorecardgold);
  color: black;
}

.inner-page-wrapper .scorecard-content th:nth-child(14), table.scorecard td:nth-child(14) {
  background: var(--scorecardblue);
  color: white;
}

.inner-page-wrapper .scorecard-content th:nth-child(17), table.scorecard td:nth-child(17) {
  background: var(--scorecardsilver);
  color: black;
}

.inner-page-wrapper table.scorecard.table thead tr th {
  border-top: 2px solid var(--headingcolor);
}

.scorecard-content {
  overflow-x: scroll;
}

/* hole */

.hole-main {
  background: url('/images/resources/essendon/essendon-logo-faded.png');
  background-repeat: no-repeat;
  background-position: center 40px;
}

.hole-nav {
  text-align: center;
  padding: 20px 0px;
}

.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: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 20px;
}

.hole-nav ul li.current a {
  color: #000;
}

.hole-flex {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.hole-image {
  width: 60%;
  margin-right: 15px;
}

.hole-info {
  width: 40%;
  margin-left: 15px;
}

.hole-yards {
  display: grid;
  row-gap: 15px;
}

.hole-yards .blue {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 1;
  grid-row-end: 1;
}

.hole-yards .blue::before {
  content: '';
  width: 18px;
  height: 18px;
  line-height: 18px;
  float: left;
  margin-right: 6px;
  background: var(--scorecardblue);
  position: relative;
  top: 5px;
}

.hole-yards .white {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 1;
}

.hole-yards .white::before {
  content: '';
  width: 18px;
  height: 18px;
  line-height: 18px;
  float: left;
  margin-right: 6px;
  background: var(--scorecardwhite);
  position: relative;
  top: 5px;
}

.hole-yards .yellow {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 2;
  grid-row-end: 2;
}

.hole-yards .yellow::before {
  content: '';
  width: 18px;
  height: 18px;
  line-height: 18px;
  float: left;
  margin-right: 6px;
  background: var(--scorecardyellow);
  position: relative;
  top: 5px;
}

.hole-yards .red {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 2;
}

.hole-yards .red::before {
  content: '';
  width: 18px;
  height: 18px;
  line-height: 18px;
  float: left;
  margin-right: 6px;
  background: var(--scorecardred);
  position: relative;
  top: 5px;
}

/* members */

.navbar {
  margin: 0px;
}

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/essendon/new-members-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.body-class-members .header-wrapper, body[class*="php-"] .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(--headingcolor);
  width: 100%;
  min-height: 100px;
  position: relative;
}

body[class*="php-"] .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, .body-class-members.php-login .header-wrapper {
  min-height: 100px;
}

.body-class-members .nav-section {
  margin-top: 0px;
  width: auto;
}

body[class*="php-"] .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, .body-class-members.php-login .header-logo {
  width: 120px;
  top: 10px;
}

.body-class-members .header-logo {
  float: left;
  margin-left: 0px;
  top: 10px;
  position: relative;
  width: 120px;
}

.body-class-members.php-login .header-logo {
  position: absolute;
  float: none;
  margin-left: auto;
}

.body-class-members .header-login {
  display: none;
}

body[class*="php-"] .header-book, .body-class-members .header-book, .body-class-visitorbooking .header-book, .body-class-getawayletter .header-book, [class*="body-class-setcoursestatus"] .header-book, .body-class-opens .header-book, .body-loginpage .header-book {
  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-"] .header-top-left, .body-class-members .header-top-left, .body-class-visitorbooking .header-top-left, .body-class-getawayletter .header-top-left, [class*="body-class-setcoursestatus"] .header-top-left, .body-class-opens .header-top-left, .body-loginpage .header-top-left, .invalid-page .header-top-left {
  top: 10px;
  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-members .header-info {
  margin-bottom: 10px;
}

.body-class-members .navbar-inverse .nav > li {
  float: left;
  border-bottom: none;
}

.body-class-members.php-login .navbar-inverse .nav > li {
  float: none;
  border-bottom: 1px solid rgba(255,255,255,1);
}

.body-class-members .navbar-inverse .nav > li > a {
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0px;
  padding: 10px 15px;
}

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-members #hamburger-icon {
  position: relative;
  display: none;
}

.body-class-members.php-login #hamburger-icon {
  display: block;
  position: absolute;
}

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*="match"] #hamburger-icon, .invalid-page #hamburger-icon {
  top: 0px;
}

.body-class-members .nav-wrapper {
  margin-top: 0px;
  height: auto;
  padding: 0px;
  overflow-y: visible;
  position: relative;
  top: 25px;
  margin-left: 85px;
}

.body-class-members.php-login .nav-wrapper {
  margin-top: 100px;
  padding: 12px 30px 30px;
  height: calc(100vh - 104px);
  overflow-y: auto;
  margin-left: 0px;
  top: 0px;
}

.body-class-members .dropdown-menu {
  position: absolute;
}

.body-class-members.php-login .dropdown-menu {
  position: relative;
}

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-members #myNavbar {
  position: relative;
  top: 0px;
  right: 0px;
  min-height: auto;
  background: transparent;
  width: auto;
}

.body-class-members.php-login #myNavbar {
  position: fixed;
  width: 350px;
  min-height: 100vh;
  right: -350px;
  background: rgba(0,0,0,0.65);
}

.body-class-members.php-login.show-menu #myNavbar {
  right: 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"] .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: 110px; 
  }
  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;
  }
}

/* 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(--headingcolor2);
  color: #fff;
  padding: 6px 20px;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
   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 {
  background: var(--headingcolor);
  color: var(--navactivelink);
}

/* no pin page */

.php-login .nav > li.nav-menu-login\.php {
  display: none;
}

.php-login .nav > li.nav-menu-competition\.php {
  display: none;
}

/* members */

thead {
  background: var(--headingcolor);
  color: #fff;
  font-weight: 400;
}

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: 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-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: 16px;
  letter-spacing: 0px;
}

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;
}

/* desktop responsive */

@media (min-width: 1600px) and (max-width: 1799px) {
  .page-space {
    padding: 0px 150px;
  }
  .carousel-holder {
    height: 461px;
  }
  .carousel-content {
    width: calc(100vw - 150px);
  }
  .carousel-large-item {
    width: 445px;
  }
  .carousel-small-item {
    width: 297px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .slider_progress-bar {
    bottom: 10px;
  }
  .home-status-bar {
    bottom: 25px;
  }
  .page-space {
    padding: 0px 100px;
  }
  .carousel-holder {
    height: 400px;
  }
  .carousel-content {
    width: calc(100vw - 100px);
  }
  .carousel-large-item {
    width: 385px;
  }
  .carousel-small-item {
    width: 257px;
  }
  .home-status-bar .statuses .status:nth-child(2), .home-status-bar .statuses .status:nth-child(3) {
    display: block;
  }
  .home-status-bar .weathers {
    display: block;
    top: -30px;
  }
  .pf-logos a:nth-of-type(1) img {
    width: 130px;
  }
  .pf-logos a:nth-of-type(2) img {
    width: 180px;
  }
  .pf-logos a:nth-of-type(3) img {
    width: 90px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .slider_progress-bar {
    bottom: 10px;
  }
  .home-status-bar {
    bottom: 25px;
  }
  .page-space {
    padding: 0px 50px;
  }
  .carousel-holder {
    height: 345px;
  }
  .carousel-content {
    width: calc(100vw - 50px);
  }
  .carousel-large-item {
    width: 333px;
  }
  .carousel-small-item {
    width: 222px;
  }
  .home-status-bar .statuses .status:nth-child(2), .home-status-bar .statuses .status:nth-child(3) {
    display: block;
  }
  .home-status-bar .weathers {
    display: block;
    top: -30px;
  }
  .pf-logos a:nth-of-type(1) img {
    width: 110px;
  }
  .pf-logos a:nth-of-type(2) img {
    width: 160px;
  }
  .pf-logos a:nth-of-type(3) img {
    width: 80px;
  }
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .page-space {
    padding: 0px 25px;
  }
  .slider_progress-bar {
    bottom: 10px;
  }
  .home-status-bar {
    bottom: 25px;
  }
  .carousel-holder {
    height: 265px;
  }
  .carousel-content {
    width: calc(100vw - 25px);
  }
  .carousel-large-item {
    width: 256px;
  }
  .carousel-small-item {
    width: 171px;
  }
  .home-status-bar .statuses .status:nth-child(2), .home-status-bar .statuses .status:nth-child(3) {
    display: block;
  }
  .home-status-bar .weathers {
    display: block;
    top: -30px;
  }
  .inner-nav ul li {
    margin: 0px 10px;
  }
  .inner-nav ul li a {
    text-transform: capitalize;
  }
  .pf-logos a:nth-of-type(1) img {
    width: 90px;
  }
  .pf-logos a:nth-of-type(2) img {
    width: 140px;
  }
  .pf-logos a:nth-of-type(3) img {
    width: 70px;
  }
  .hole-nav ul li {
    margin: 0px 4px;
  }
  .hole-yards {
    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: 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 {
    width: 940px;
  }
  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, .invalid-page .navbar-inverse .nav > li > a {
    padding: 10px 12px;
    font-size: 14px;
  }
  .body-class-members.php-login .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 14px;
  }
  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 .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;
  }
  .slider_progress-bar {
    bottom: 10px;
  }
  .home-status-bar {
    bottom: 25px;
  }
  .carousel-holder {
    height: 265px;
  }
  .carousel-content {
    width: calc(100vw - 25px);
  }
  .carousel-large-item {
    width: 256px;
  }
  .carousel-small-item {
    width: 171px;
  }
  .home-status-bar .statuses .status:nth-child(2), .home-status-bar .statuses .status:nth-child(3) {
    display: block;
  }
  .home-status-bar .weathers {
    display: block;
    top: -30px;
  }
  .inner-nav ul li {
    margin: 0px 10px;
  }
  .inner-nav ul li a {
    text-transform: capitalize;
  }
  .logo-item {
    margin: 0px 5px;
  }
  .pf-logos a:nth-of-type(1) img {
    width: 70px;
  }
  .pf-logos a:nth-of-type(2) img {
    width: 120px;
  }
  .pf-logos a:nth-of-type(3) img {
    width: 50px;
  }
  .mf-copy {
    font-size: 14px;
  }
  .hole-nav ul {
    width: 500px;
    margin: 0px auto;
  }
  .hole-nav ul li {
    margin: 5px 6px;
  }
  .hole-yards .white {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .hole-yards .yellow {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
  }
  .hole-yards .red {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 4;
    grid-row-end: 4;
  }
  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"] .header-space, .invalid-page .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"] .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;
  }
}

/* mobile and portrait tablet */

@media (min-width: 0px) and (max-width: 979px) {
  .header-wrapper {
    position: fixed;
    min-height: 100px;
    background: var(--headingcolor);
  }
  .header-logo {
    top: 10px;
    width: 120px;
    margin-left: 10px;
  }
  .header-links {
    top: 40px;
    left: 20px;
    letter-spacing: 0px;
    text-transform: initial;
  }
  .header-status {
    top: 20px;
    left: 20px;
    letter-spacing: 0px;
    text-transform: initial;
  }
  .header-right {
    top: 40px;
    right: 140px;
    letter-spacing: 0px;
    text-transform: initial;
  }
  #hamburger-icon {
    top: 0px;
    width: 100px;
    height: 100px;
  }
  .show-menu #hamburger-icon {
    position: fixed;
  }
  .home-slideshow .galleryInner {
    height: auto !important;
    width: 100% !important;
  }
  .home-slideshow .galleryInner img {
    height: auto !important;
    width: 100% !important;
  }
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #fff;
    text-shadow: none;
    font-weight: 400;
  }
  .navbar-inverse .nav-collapse .dropdown-menu {
    background: var(--dropdownbg);
  }
  .navbar-inverse .nav-collapse .nav > li.current > a, .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .dropdown-menu > li.current > a, .navbar-inverse .nav-collapse .dropdown-menu > li > a:hover {
    color: var(--navactivelink);
    background: transparent;
  }
  .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;
  }
  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;
    position: absolute;
  }
  .body-class-members .nav-wrapper {
    margin-left: 0px;
    top: 0px;
    margin-top: 15px;
  }
  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;
    display: block;
  }
  .nav-wrapper {
    height: calc(100vh - 136px);
  }
  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;
  }
  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: 9px 15px;
  }
  .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
    right: 2px;
  }
  .home-slideshow .raw-slideshow::after {
    display: none;
  }
  .home-slideshow .raw-slideshow {
    height: 60vh;
  }
  .home-slideshow .raw-slideshow img {
    height: 60vh !important;
  }
  .home-slideshow {
    height: auto;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .page-space {
    padding: 0px 20px;
  }
  .home-status-bar {
    position: relative;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: var(--headingcolor);
    padding: 10px;
  }
  .slider_progress-bar {
    display: none;
  }
  .home-intro {
    padding: 40px 0px;
    background-size: contain;
  }
  .carousel-holder {
    height: 268px;
  }
  .carousel-content {
    width: 460px;
    margin: 0px auto 20px;
  }
  .carousel-large-item {
    width: 259px;
  }
  .carousel-small-item {
    width: 173px;
  }
  .carousel-controls {
    text-align: center;
  }
  .logo-row {
    padding: 20px 0px;
  }
  .logo-flex {
    flex-direction: column;
  }
  .logo-item {
    margin: 15px auto;
  }
  .public-footer {
    padding-top: 50px;
  }
  .pf-flex {
    flex-direction: column;
  }
  .pf-address {
    width: auto;
    text-align: center;
  }
  .pf-logo {
    width: auto;
    margin: 20px 0px;
  }
  .pf-newsletter {
    width: auto;
    text-align: center;
  }
  .footer-line {
    margin-top: 25px;
  }
  .mf-flex {
    flex-direction: column;
    text-align: center;
  }
  .mf-copy {
    padding-top: 0px;
    width: auto;
    line-height: 26px;
  }
  .mf-ig-logo {
    margin-top: 15px;
    text-align: center;
    width: auto;
  }
  .inner-nav ul li {
    margin: 6px 0px;
    display: block;
    list-style: none;
  }
  .inner-nav ul li a {
    display: block;
    padding: 6px 5px;
    border: 1px solid var(--headingcolor);
  }
  .inner-main {
    background-position: center;
    background-size: contain;
  }
  .inner-full {
    padding: 0px;
  }
  .two-equal-added.flex-row {
    flex-direction: column;
  }
  .two-equal-added.flex-row.flip-flex {
    flex-direction: column-reverse;
  }
  .two-equal-added.flex-row .ie-col:first-child {
    margin: 0px;
  }
  .two-equal-added.flex-row .ie-col:last-child {
    margin-top: 30px;
    margin-left: 0px;
  }
  .two-equal-added.flex-row.flip-flex .ie-col:first-child {
    margin-top: 30px;
    margin-left: 0px;
  }
  .two-equal-added.flex-row.flip-flex .ie-col:last-child {
    margin-top: 0px;
    margin-left: 0px;
  }
  .two-unequal-added.flex-row {
    flex-direction: column;
  }
  .two-unequal-added .main-col {
    width: 100%;
    margin: 0px;
  }
  .two-unequal-added .sidebar-col {
    width: 100%;
    margin-top: 30px;
    margin-left: 0px;
  }
  .two-unequal-added.flex-row.flip-flex {
    flex-direction: column-reverse;
  }
  .two-unequal-added.flip-flex .main-col {
    margin-left: 0px;
  }
  .two-unequal-added.flip-flex .sidebar-col {
    margin-right: 0px;
  }
  .three-equal-added.flex-row {
    flex-direction: column;
  }
  .three-equal-added.flex-row .ie-col:first-child {
    margin-right: 0px;
  }
  .three-equal-added.flex-row .ie-col:nth-child(2) {
    margin: 30px 0px;
  }
  .three-equal-added.flex-row .ie-col:last-child {
    margin-left: 0px;
  }
  .four-equal-added.flex-row {
    flex-direction: column;
  }
  .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) {
    margin: 20px 0px;
  }
  .four-equal-added.flex-row .ie-col:last-child {
    margin: 0px;
  }
  .additional-boxes {
    padding: 0px;
    text-align: center;
  }
  .pf-social {
    margin: 20px 0px;
  }
  .pf-logos a {
    display: block;
    margin: 5px 0px;
  }
  .hole-slide-logos {
    left: 0px;
    right: 0px;
    text-align: center;
    bottom: 10px;
  }
  .home-slideshow .raw-slideshow {
    height: 50vh;
  }
  .home-slideshow .raw-slideshow img {
    height: 50vh !important;
  }
  .inner-page-wrapper, .hole-page-wrapper {
    padding-top: 100px;
  }
  .hole-nav ul {
    width: 280px;
    margin: 0px auto;
  }
  .hole-nav ul li {
    margin: 5px 2px;
  }
  .hole-main {
    background-position: center;
    background-size: contain;
  }
  .hole-flex {
    flex-direction: column-reverse;
  }
  .hole-info {
    width: auto;
    margin: 0px;
    text-align: center;
  }
  .hole-image {
    margin: 20px 0px 0px;
    width: auto;
    text-align: center;
  }
  .hole-image img {
      max-width: 460px;
      width: 100%;
  }
  .hole-yards {
    width: 205px;
    margin: 0px auto;
  }
  .hole-yards .white {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .hole-yards .yellow {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
  }
  .hole-yards .red {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 4;
    grid-row-end: 4;
  }
  .home-slide-title h1, .home-slide-title h2 {
    font-size: 32px;
    line-height: 42px;
  }
  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: 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"] .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-top: 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;
  }
}

/* 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;
  }
  .header-right {
    display: none;
  }
  #myNavbar, .body-class-members.php-login #myNavbar {
    width: 100%;
    right: -500px;
    background: rgba(0,0,0,0.85);
  }
  .carousel-holder {
    height: 290px;
  }
  .carousel-content {
    width: 280px;
    margin: 0px auto 20px;
  }
  .carousel-large-item {
    width: 280px;
  }
  .carousel-small-item {
    width: 280px;
  }
  .carousel-small-item img {
    height: 290px;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }
}

.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;
}

/* editor */

.php-ckeditor .content-wrapper {
  margin-top: 100px;
}

.php-ckeditor .page-space {
  padding: 0px;
}

.php-ckeditor .home-slide-title {
  position: relative;
  background: rgba(0,0,0,0.3);
  top: 0px;
  transform: translateY(0px);
  margin: 10px 0px;
  left: 0px;
  right: 0px;
}

.php-ckeditor .hole-slide-logos {
  position: relative;
  bottom: 0px;
  left: 0px;
}

.php-ckeditor .home-status-bar {
  display: none;
}

.php-ckeditor .home-intro {
  padding: 80px 20px;
}

.php-ckeditor .included-logo-row {
  margin: 15px 0px;
}

.php-ckeditor .carousel-content {
  width: auto;
}

.php-ckeditor .carousel-holder {
  height: auto;
}

.php-ckeditor .carousel-large-item {
  float: none;
  display: inline-block;
  margin-top: 15px;
}

.php-ckeditor .carousel-small-item {
  float: none;
  display: inline-block;
  margin-top: 15px;
}

.php-ckeditor .carousel-wrapper {
  position: relative;
  width: auto;
}

/* custom page template editor */

.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: 14px;
}

.php-ckeditor .extra-nav a:hover, .php-ckeditor .extra-row a:focus {
  background: #000;
  color: var(--navactivelink);
  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: var(--navactivelink);
  cursor: help;
}

.php-ckeditor .extra-nav-tooltip-text {
  display: block;
  color: #fff;
  margin-top: 10px;
  height: 0px;
  opacity: 0;
  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 {
  position: absolute;
  top: -2px;
  right: 0px;
  width: 30px;
  height: 30px;
}

.added-section-remove .asr-cross {
  width: 30px;
  height: 2px;
  background: #f00;
  content: '';
  display: inline-block;
}

.added-section-remove:hover, .added-section-remove:focus {
  cursor: pointer;
}

.added-section-remove .asr-cross-1 {
  transform: rotate(45deg);
  position: absolute;
  top: 13px;
  left: 0px;
}

.added-section-remove .asr-cross-2 {
  transform: rotate(-45deg);
  position: absolute;
  top: 13px;
  left: 0px;
}

.added-section-move-up {
  position: absolute;
  top: -2px;
  right: 100px;
  font-size: 24px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.added-section-move-up:hover {
  cursor: pointer;
}

.added-section-move-down {
  position: absolute;
  top: -2px;
  right: 50px;
  font-size: 24px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.added-section-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 .slider_progress-bar {
  display: none;
}

.php-ckeditor .scorecard-content {
  display: block;
}

/* end custom page template editor */

/* scroll to top */

.scrollTop {
  position: fixed;
  bottom: 95px;
  right: 20px;
  z-index: 50;
}

.scrollTop a{
  opacity: 0;
  background-color: var(--headingcolor2);
  border: 2px solid #000;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #FFF;
  display: inline-block;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.scrollTop a i {
  font-size: 20px;
  margin-top: 8px;
}

.scrollTop a:hover {
  background: var(--headingcolor);
  cursor: pointer;
  color: var(--navactivelink);
}

@media (min-width: 0px) and (max-width: 767px) {
  .scrollTop {
    right: 5px;
    bottom: 5px;
  }
  .scrollTop a {
    width: 28px;
    height: 28px;
  }
  .scrollTop a i {
    font-size: 14px;
    margin-top: 4px;
  }
}

/* invalid page */

.invalid-page {
  background: url('/images/resources/essendon/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;
}

/* 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 */

#globalwrap [class*="-slideshow"] .nivo-caption {
  display: none !important;
}

.content-wrapper [class*="-slideshow"] .nivo-caption h4 {
  color: #fff;
  font-family: var(--headingfont);
  display: inline-block;
  padding: 0px 15px;
  margin: 0px;
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
  text-shadow: 1px 1px #000;
}

.content-wrapper [class*="slideshow"] .nivo-caption p {
  color: white;
  text-shadow: 1px 1px #000;
}

@media (min-width: 0px) and (max-width: 767px) {
  #globalwrap [class*="-slideshow"] .nivo-caption {
    bottom: 10px;
  }
  #globalwrap [class*="-slideshow"] .nivo-caption h4 {
    font-size: 16px;
    line-height: 24px;
  }
}

/* forms */

.members-page form {
  margin: 0px auto;
  width: 98%;
  text-align: center;
}

.inner-page-wrapper form input, .members-page form input {
  background: #eee;
  border-radius: 0px;
  border: 2px solid var(--headingcolor);
  height: 30px;
  width: 90%;
  text-align: center;
}

.inner-page-wrapper form textarea, .members-page form textarea {
  background: #eee;
  border-radius: 0px;
  border: 2px solid var(--headingcolor);
  height: 90px;
  width: 90%;
  text-align: center;
}

.inner-page-wrapper form select, .members-page form select {
  background: #eee;
  border-radius: 0px;
  border: 2px solid var(--headingcolor);
  height: 30px;
  width: 90%;
  box-sizing: content-box;
  text-align: center;
}

.members-page form input, .members-page form textarea, .members-page form select {
  background: #fff;
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-page-wrapper form input, .members-page form input {
    width: 90%;
  }
  .inner-page-wrapper form textarea, .members-page form textarea {
    width: 90%;
  }
  .inner-page-wrapper form select, .members-page form select {
    width: 90%;
  }
}

.inner-page-wrapper form img.ui-datepicker-trigger {
  display: none;
}

.inner-page-wrapper form input[type*="submit"], .members-page form input[type*="submit"] {
  width: auto;
  height: auto;
  background: var(--headingcolor2);
  color: #fff;
  margin-top: 20px;
  border: none;
  padding: 10px 15px;
}

.inner-page-wrapper form input[type*="submit"]:hover, .members-page form input[type*="submit"]:hover {
  background: var(--headingcolor);
  color: var(--navactivelink);
}

.inner-title ul, .inner-col ul, .inner-flex ul, .members-page ul, .inner-full-added ul {
  margin: 0px 0px 10px;
}

.inner-full ul li, .inner-col ul li, .inner-flex ul li, .members-page ul li, .inner-full-added ul li {
  line-height: 28px;
  list-style: none;
}

.inner-full ul li::before, .inner-col ul li::before, .inner-flex ul li::before, .members-page ul li::before, .inner-full-added ul li::before {
  content: '\f111';
  font-family: 'FontAwesome';
  font-size: 7px;
  margin-right: 6px;
  color: var(--headingcolor);
  position: relative;
  top: -3px;
}

.inner-full .gallery-thumbs ul li::before, .inner-full-added .gallery-thumbs ul li::before {
  display: none;
}

.inner-full ol, .inner-full-added ol {
  margin: 0px 0px 10px;
}

.inner-full ol li, .inner-full-added ol li {
  line-height: 28px;
  list-style-position: inside;
}

.inner-page-wrapper form input[type*="radio"], .members-page form input[type*="radio"] {
  width: auto;
  margin: 0px;
}

.inner-page-wrapper form input[type*="checkbox"], .members-page form input[type*="checkbox"] {
  width: auto;
  margin: 0px;
}

@media (min-width: 980px) {
  .gallery-image .ss-controls a, .gallery-image .nav-controls a {
    text-transform: capitalize;
    letter-spacing: 0px;
  }
}

@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-full table th, .inner-flex table th, .members-page table th, .additional-boxes table th {
  border: 2px solid var(--headingcolor);
  padding: 6px;
  font-weight: 400;
  background: var(--headingcolor);
  color: #fff;
}

.inner-full table td, .inner-flex table td, .members-page table td, .additional-boxes table td {
  border: 2px solid var(--headingcolor);
  padding: 6px;
}

@media (min-width: 768px) and (max-width: 979px) {
  .inner-main table th, .members-page table th, .additional-boxes table th {
    padding: 4px;
    font-size: 14px;
  }
  .inner-main table td, .members-page table td, .additional-boxes table td {
    padding: 4px;
    font-size: 14px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-main table th, .members-page table th, .additional-boxes table th {
    padding: 2px;
    font-size: 12px;
  }
  .inner-main table td, .members-page table td, .additional-boxes 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;
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .home-page-wrapper, .hole-page-wrapper, .inner-page-wrapper {
    padding-top: 100px;
  }
  .home-slide-title {
    top: 50px;
    transform: translateY(0px);
  }
  .hole-slide-logos {
    bottom: 20px;
  }
  .home-status-bar {
    position: relative;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: var(--headingcolor);
    padding: 10px;
  }
  .home-page-wrapper .slider_progress-bar {
    display: none;
  }
  .home-status-bar .weathers {
    top: -22px;
  }
}

@media (min-width: 768px) {
  .teebooking .picker {
    color: #fff;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .php-analysis table th, .php-analysis table td, .php-courseanalysis table th, .php-courseanalysis table td {
    font-size: 12px;
  }
}

.home-slideshow .raw-slideshow-image {
  z-index: 1;
  transition: all 800ms ease-in-out;
  -moz-transition: all 800ms ease-in-out;
  -webkit-transition: all 800ms ease-in-out;
}

.home-slideshow .raw-slideshow-image[style*="opacity: 1"] {
  z-index: 3;  
}

.gallery-image div.caption-container {
  height: auto;
}

.gallery-image span.image-caption.current {
  position: relative;
} 

blockquote p {
  font-size: 16px;
  line-height: 28px;
}

.php-ckeditor .home-slideshow::after {
  display: none;
}

@media (min-width: 0px) and (max-width: 767px) {
  .flip-flex {
    flex-direction: column-reverse;
  }
  h5 a {
    text-transform: capitalize;
    letter-spacing: 0px;
    margin: 0px;
    padding: 4px 15px;
  }
  table h5 a {
    padding: 4px 10px;
    font-size: 14px;
  }
}

.home-page-wrapper .home-slideshow {
  height: 100vh;
  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: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .foreground-video {
    width: 300%;
    left: -100%;
  }
}

@media (min-width: 768px) and (max-width: 979px) and (orientation: portrait) {
  .home-page-wrapper .home-slideshow {
    height: 45vh;
  }
  .background-video {
    top: -4vh;
  }
}

@media (min-width: 768px) and (max-width: 979px) and (orientation: landscape) {
  .home-page-wrapper .home-slideshow {
    height: 80vh;
  }
  .background-video {
    top: 0vh;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: portrait) {
  .home-page-wrapper .home-slideshow {
    height: 50vh;
  }
  .background-video {
    top: -5vh;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: landscape) {
  .home-page-wrapper .home-slideshow {
    height: 80vh;
  }
  .background-video {
    top: 0vh;
  }
}

.home-page-wrapper .home-slideshow::after {
  display: none;
}

.inner-video {
  margin: 20px auto;
  max-width: 750px;
}

.php-ckeditor .home-slideshow {
  height: auto;
}

.home-slideshow video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.body-class-wedding_page_1 .home-slideshow::after {
  display: none;
}

.home-slideshow .nivo-controlNav-Wrapper {
  display: none;
}

.members-page table h5 a {
  text-transform: capitalize;
  padding: 2px 6px;
  letter-spacing: 0px;
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .home-slideshow {
    overflow: visible;
  }
  .background-video {
    height: 80vh;
    position: relative;
  }
  .home-page-wrapper .home-slideshow {
    height: auto;
  }
} 

@media (min-width: 0px) and (max-width: 979px) and (orientation: portrait) {
  .home-slideshow {
    overflow: visible;
  }
  .background-video {
    height: 50vh;
    position: relative;
    top: 0px;
  }
  .home-page-wrapper .home-slideshow {
    height: auto;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .hole-slide-logos img {
    width: 65px;
  }
  .home-slide-title h1, .home-slide-title h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .body-class-the_team .two-unequal-added.flex-row.flip-flex {
    flex-direction: column;
  }
  .body-class-the_team .two-unequal-added.flex-row {
    flex-direction: column-reverse;
  }
  .inner-full img {
    max-width: 400px;
    width: 100%;
  }
  .gallery-image .ss-controls a, .gallery-image .nav-controls a {
    text-transform: capitalize;
    letter-spacing: 0px;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: portrait) {
  .home-slideshow video {
    height: 50vh;
  }
}

.php-ckeditor .background-video {
  display: none;
}

.php-ckeditor .home-page-wrapper .home-slide-title {
  display: none;
}

.php-ckeditor video {
  display: none;
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .header-wrapper {
    min-height: 80px;
  }
  .body-class-home .header-logo, .body-contentpage .header-logo {
    width: 104px;
    top: 5px;
  }
  .header-right {
    top: 30px;
  }
  .home-page-wrapper, .hole-page-wrapper, .inner-page-wrapper {
    padding-top: 80px;
  }
  #hamburger-icon {
    height: 80px;
  }
  #hamburger-icon .line-1 {
    top: 28px;
  }
  #hamburger-icon .line-2 {
    top: 40px;
  }
  #hamburger-icon .line-3 {
    top: 52px;
  }
  .fix .header-right, .show-menu .header-right {
    top: 30px;
  }
  .show-menu #hamburger-icon .line-1 {
    top: 40px;
  }
  .show-menu #hamburger-icon .line-3 {
    top: 40px;
  }
  .nav-wrapper {
    margin-top: 75px;
  }
}

.home-slideshow > .wysiwyg-editable > p {
  margin: 0px;
}

.body-class-members.body-contentpage .included-carousel {
  display: none;
}

.body-class-members.body-contentpage .page-footer {
  display: none;
}

.body-class-members.body-contentpage .included-logo-row {
  display: none;
}

@media (min-width: 0px) and (max-width: 979px) {
  .page-url-floristry_by_myla .home-slideshow {
    min-height: 400px;
  }
  .page-url-floristry_by_myla .home-slideshow h1 img {
    width: 100%;
  }
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: landscape) {
  .page-url-floristry_by_myla .home-slideshow .home-slide-title {
    top: 0px;
    transform: translateY(0px);
  }
}

/* end anton styles */