/* anton styles */

/* fonts */

.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-serif-jp-font {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* variables */

:root {
  --bodyfont: 'Montserrat', sans-serif;
  --headingfont: 'Noto Serif JP', serif;
  --headingcolor: #284C96;
  --headingcolor2: #284C96;
  --linkcolor: #284C96;
  --linkhover: #191970;
  --bodycolor: #444;
  --publicheaderbg: rgba(0,0,0,0.7);
  --headerbg: #000;
  --footerbg: #ECE9E4;
  --navlink: #fff;
  --navactivelink: #fc0;
  --dropdownmenu: #333;
  --white: #fff;
  --black: #000;
  --scorecardwhite: #eee;
  --scorecardyellow: #F5E80D;
  --scorecardred: #F10D0E;
  --scorecardblue: #1C4AA0;
}

.CodeMirror-wrap .CodeMirror-scroll {
  height: 600px;
}

.content-wrapper {
  line-height: 26px;
}

.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-size: 40px;
  line-height: 50px;
  color: var(--headingcolor);
  margin-bottom: 30px;
  font-family: var(--headingfont);
}

h2 {
  font-size: 36px;
  line-height: 46px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h3 {
  font-size: 30px;
  line-height: 40px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h4 {
  font-size: 24px;
  line-height: 34px;
  color: var(--headingcolor3);
  margin-bottom: 20px;
  font-family: var(--headingfont);
}

h5 {
  font-size: 20px;
  line-height: 30px;
  color: var(--headingcolor);
  margin-bottom: 20px;
}

h6 {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  color: var(--headingcolor);
  font-family: var(--headingfont);
}

.content-wrapper h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: transparent;
  color: var(--headingcolor);
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: 2px;
  margin-right: 10px;
  position: relative;
  border: 1px solid var(--headingcolor);
}

.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;
  border-color: var(--headingcolor);
}

a {
  color: var(--linkcolor);
  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(--linkhover);
  text-decoration: none;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* header */

.header-wrapper {
  position: fixed;
  z-index: 1001;
  background: transparent;
  min-height: 160px;
  top: 0px;
  left: 0px;
  width: 100%;
  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;
  background: var(--publicheaderbg);
}

.header-space {
  margin: 0px 70px;
}

.header-logo {
  position: absolute;
  width: 118px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  z-index: 50;
  top: 23px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.fix .header-logo {
  top: 5px;
  width: 77px;
}

.status-box {
  position: fixed;
  top: 160px;
  background: rgba(0,0,0,0.6);
  z-index: 1002;
  left: -350px;
  width: 350px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.body-public.body-class-.fix .status-box, .body-public.body-class-home.fix .status-box, .body-public.body-contentpage.fix .status-box {
  top: 100px;
}

.show-status .status-box {
  left: 0px;
}

.status-content {
  color: #fff;
}

.status-content h3 {
  display: none;
}

.status-content p {
  margin: 0px;
}

.status-space {
  padding: 15px 25px;
}

.th-left {
  position: absolute;
  left: 50px;
  top: 33px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 600;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.th-left:hover, .th-left:focus {
  cursor: pointer;
  color: var(--navactivelink);
}

.fix .th-left {
  top: 10px;
}

.th-right {
  position: absolute;
  right: 50px;
  top: 33px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.th-right a {
  color: #fff;
  font-weight: 600;
}

.th-right a:hover, .th-right a:focus {
  color: var(--navactivelink);
}

.fix .th-right {
  top: 10px;
}

.body-public .th-right .member-book {
  display: none;
}

.body-class-members .th-right .visit-book {
  display: none;
}

.top-header {
  min-height: 76px;
  position: relative;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.fix .top-header {
  min-height: 50px;
}

.top-header::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 40%;
  height: 1px;
  background: #fff;
}

.top-header::after {
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 40%;
  height: 1px;
  background: #fff;
}

/* nav */

@media (min-width: 1400px) {
  .body-public.body-class-home .nav-section, .body-public.body-contentpage .nav-section, .body-public.body-class- .nav-section {
    width: 1170px;
    margin: 15px auto 0px;
  }
  .body-public.body-class-home .nav-section .nav > li:nth-of-type(1), .body-public.body-contentpage .nav-section .nav > li:nth-of-type(1), .body-public.body-class- .nav-section .nav > li:nth-of-type(1) {
    margin-left: 110px;
  }
  .body-public.body-class-home .nav-section .nav > li:nth-of-type(7), .body-public.body-contentpage .nav-section .nav > li:nth-of-type(7), .body-public.body-class- .nav-section .nav > li:nth-of-type(7) {
    margin-left: 130px;
  }
}

@media (min-width: 980px) {
  .body-public.body-class-home .nav-section, .body-public.body-contentpage .nav-section, .body-public.body-class- .nav-section {
    margin-top: 15px;
    transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
  }
  .body-public.body-class-home.fix .nav-section, .body-public.body-contentpage.fix .nav-section, .body-public.body-class-.fix .nav-section {
    margin-top: 6px;
  }
}

.navbar {
  margin: 0px;
}

.navbar-inverse .navbar-inner {
  background: transparent;
  border: none;
  box-shadow: none;
}

.navbar .nav {
  float: none;
}

.navbar .nav > li {
  display: inline-block;
  float: none;
}

.navbar-inverse .nav > li > a {
  color: var(--navlink);
  text-shadow: none;
}

.navbar-inverse .nav > li > a:hover, .navbar-inverse .nav > li > a:focus, .navbar-inverse .nav > li.current > a, .navbar-inverse .nav > li.active > a {
  color: var(--navactivelink);
  background: transparent;
}

.dropdown-menu {
  text-align: left;
  background: var(--dropdownmenu);
}

.dropdown-menu > li > a {
  color: var(--navlink);
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > li.current > a {
  color: var(--navactivelink);
  background: transparent;
}

.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;
  box-shadow: none;
  color: var(--navactivelink);
}

/* footer */

.public-footer {
  margin-top: 7px;
  position: relative;
  background: var(--footerbg);
  text-align: center;
}

.public-footer h6 {
  margin: 0px 0px 10px;
  color: var(--bodycolor);
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
}

.public-footer::before {
  content: '';
  background: #BAAB98;
  display: inline-block;
  height: 1px;
  width: 100%;
  position: absolute;
  top: -7px;
  left: 0px;
}

.public-footer a {
  color: var(--bodycolor);
}

.public-footer a:hover, .public-footer a:focus {
  color: var(--headingcolor);
}

.pf-newsletter {
  padding-top: 90px;
}

.pf-newsletter form {
  position: relative;
  max-width: 520px;
  margin: 20px auto 0px;
}

.pf-newsletter form input[type*="text"] {
  width: calc(100% - 160px);
  padding-right: 150px;
  border: 1px solid #BBAA9A;
  border-radius: 6px;
  height: 40px;
}

.pf-newsletter form .customFormLine:first-of-type label {
  position: absolute;
  left: 8px;
  bottom: 71px;
  margin: 0px;
  opacity: 1;
  visibility: visible;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.firefox .pf-newsletter form .customFormLine:first-of-type label {
  bottom: 65px;
}

.pf-newsletter form .customFormLine:first-of-type.hide-label label {
  opacity: 0;
  visibility: hidden;
}

.pf-newsletter form .customFormLine:nth-of-type(2) {
  display: flex;
  flex-direction: row-reverse;
  max-width: 240px;
  margin: 10px auto;
}

.pf-newsletter form .customFormLine:nth-of-type(2) label {
  margin: 0px 0px 0px 10px;
}

.pf-newsletter form .customFormLine:nth-of-type(2) input {
  margin: 0px;
}

.pf-newsletter form input[type*="submit"] {
  position: absolute;
  right: 0px;
  bottom: 56px;
  margin: 0px !important;
  width: 140px;
  text-align: center;
  background: var(--headingcolor);
  color: #fff;
  height: 50px;
  text-transform: uppercase;
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.firefox .pf-newsletter form input[type*="submit"] {
  bottom: 50px;
}

.pf-newsletter form input[type*="submit"]:hover, .pf-newsletter form input[type*="submit"]:focus {
  background: #000;
}

.pf-address {
  margin-top: 50px;
}

.pf-social {
  margin-top: 30px;
}

.pf-social a {
  font-size: 24px;
  margin: 0px 6px;
}

.members-footer {
  background: var(--footerbg);
  padding: 35px 0px;
  text-align: center;
}

.mf-copy a {
  color: var(--bodycolor);
}

.mf-copy a:hover, .mf-copy a:focus {
  color: var(--headingcolor);
}

.mf-vert-line {
  display: inline-block;
  margin: 0px 8px;
  content: '';
  width: 2px;
  height: 15px;
  background: var(--bodycolor);
  position: relative;
  top: 2px;
}

.mf-ig {
  margin-top: 20px;
}

.mf-ig img {
  width: 120px;
}

/* page */

#globalwrap {
  padding: 0px;
}

.page-space {
  padding: 0px 200px;
}

/* home */

.home-slideshow {
  position: relative;
}

/*.home-slideshow .galleryInner::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(0,0,0,0.3);
}*/

.home-slideshow .galleryInner, .home-slideshow .galleryInner img {
  width: 100% !important;
  height: 100vh !important;
  object-fit: cover;
}

.home-news {
  position: absolute;
  z-index: 11;
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 50px;
  bottom: 0px;
  left: 0px;
  color: #fff;
  padding-top: 20px;
}

.home-news .page-space {
  display: flex;
}

.hn-title {
  width: 180px;
  flex-shrink: 0;
  font-weight: 600;
  text-transform: uppercase;
}

.hn-wrapper {
  width: 1200px;
  height: 26px;
  left: 0px;
  position: relative;
  overflow: hidden;
}

.hn-wrapper .news-wrapper {
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
}

.hn-wrapper .news-item {
  float: left;
  width: 1200px;
  margin-right: 20px;
  position: relative;
}

.hn-wrapper .news-item h4 {
  display: none;
}

.hn-wrapper .news-item br {
  display: none;
}

.hn-wrapper .news-item .news-date {
  display: none;
}

.hn-wrapper .news-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 0px !important;
  top: 0px;
  left: 0px;
}

.hn-controls {
  width: 100px;
  flex-shrink: 0;
  text-align: right;
}

.hnc-prev {
  display: inline-block;
  margin-right: 20px;
  font-size: 28px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.hnc-prev:hover, .hnc-prev:focus {
  cursor: pointer;
  color: var(--navactivelink);
}

.hnc-next {
  display: inline-block;
  font-size: 28px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.hnc-next:hover, .hnc-next:focus {
  cursor: pointer;
  color: var(--navactivelink);
}

.home-intro {
  text-align: center;
  margin: 120px auto;
  max-width: 1000px;
}

.home-intro h5 a {
  margin-top: 20px;
}

.home-column-section {
  display: flex;
}

.home-column-section > div {
  flex: 1 1 0;
}

.hcsi-pic {
  position: relative;
}

.hcsi-pic a::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.hcsi-pic:hover a::before {
  opacity: 1;
  visibility: visible;
}

.hcsi-content {
  position: absolute;
  bottom: 80px;
  left: 20px;
  right: 20px;
  text-align: center;
  z-index: 5;
  font-weight: 600;
  font-family: var(--headingfont);
  font-size: 22px;
  color: #fff;
  text-shadow: 1px 1px #000;
}

.home-testimonials {
  background: var(--footerbg);
  padding: 50px 0px;
  text-align: center;
}

.home-testimonials .galleryInner {
    margin: 0 auto;
    width: 100% !important;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*height: auto !important;*/
  background: none;
}

.content-wrapper .home-testimonials .galleryInner .nivo-caption {
    width: 100%;
    -moz-opacity: 1;
    margin: 0px auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: alpha(opacity=100);
    opacity: 1;
    text-align: center;
    position: relative;
    z-index: 0;
    background-color: rgba(0,0,0,0);
    padding: 0;
    height: auto;
    overflow: visible;
    min-height: 80px;
  max-width: 1070px;
  color: var(--bodycolor);
  font-family: var(--headingfont);
}

.home-testimonials .galleryInner .nivo-caption p {
  font-size: 16px;
  line-height: 26px;
  color: var(--bodycolor);
  text-shadow: none;
}

.home-testimonials .galleryInner .nivo-caption h4 {
  text-transform: uppercase;
  font-weight: 400;
  background: transparent;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 26px;
  color: var(--headingcolor);
  font-family: var(--bodyfont);
}

.home-testimonials .galleryInner img {
    display: none !important;
}

#globalwrap .home-testimonials .nivo-directionNav {
  display: none;
}

.home-testimonials .nivo-controlNav-Wrapper {
  display: block;
  position: relative;
  left: 0px;
  bottom: 0px;
  margin-top: 15px;
}

.home-testimonials .nivo-controlNav {
  position: relative;
  padding: 0px;
  left: 0px;
  bottom: 0px;
}

.content-wrapper .home-testimonials .nivo-controlNav a {
  width: 10px;
  height: 10px;
  background-image: none;
  border: 2px solid var(--headingcolor);
  border-radius: 50%;
  background: transparent;
  margin-right: 6px;
  display: inline-block;
}

.content-wrapper .home-testimonials .nivo-controlNav a.active {
  background: var(--headingcolor);
}

.home-testimonials, .home-testimonials .galleryInner {
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.home-logo-row {
  padding: 80px 0px;
}

.logo-row .wysiwyg-editable {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.logo-row .wysiwyg-editable a {
  margin: 0px 15px;
}

/* inner */

.body-contentpage #global > br {
  display: none;
}

.body-contentpage .additional-boxes {
  margin-bottom: 100px;
}

.body-contentpage .inner-logo-row {
  margin-bottom: 60px;
}

.inner-intro {
  margin: 120px auto 0px;
  text-align: center;
}

.inner-intro h1 {
  margin: 0px 0px 60px;
}

/* inner added boxes style */

.body-contentpage .added-section-move-up, .body-class-home .added-section-move-up, .body-class- .added-section-move-up {
  display: none;
}

.body-contentpage .added-section-move-down, .body-class-home .added-section-move-down, .body-class- .added-section-move-down {
  display: none;
}

.body-contentpage .additional-button-row, .body-class-home .additional-button-row, .body-class- .additional-button-row {
  display: none;
}

.body-contentpage .added-section-remove, .body-class-home .added-section-remove, .body-class- .added-section-remove {
  display: none;
}

.body-contentpage .additional-boxes {
  margin: 0px auto 150px;
}

.inserted-block {
  position: relative;
  margin: 70px 0px; /* change this padding to increase / decrease the gap between added sections */
}

.inserted-block .custom-carousel {
  margin-top: 60px;
}

.php-ckeditor .inserted-block {
  margin: 0px;
  padding: 30px 0px;
}

.inner-full-added {
  text-align: center;
}

.two-equal-added.flex-row {
  display: flex;
  align-items: center;
}

.two-equal-added.flex-row.flip-flex {
  flex-direction: row-reverse;
}

.is-two-col {
  display: flex;
}

.htc-content {
  width: 60%;
  margin-right: 50px;
}

.flip-flex .htc-content {
  margin-left: 50px;
  margin-right: 0px;
}

.htc-pic {
  width: 40%;
  margin-left: 50px;
}

.flip-flex .htc-pic {
  margin-right: 50px;
  margin-left: 0px;
}

.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-equal-added.flex-row.flip-flex .ie-col:first-child {
  margin-right: 0px;
  margin-left: 20px;
}

.two-equal-added.flex-row.flip-flex  .ie-col:last-child {
  margin-left: 0px;
  margin-right: 20px;
}

.is-two-col {
  display: flex;
}

.is-two-col.flip-flex {
  flex-direction: row-reverse;
}

.two-unequal-added.flex-row {
  display: flex;
}

.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;
}

.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;
}

@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: center;
    width: 100%;
  }
  .flip-flex {
    flex-direction: column-reverse;
  }
  .two-equal-added.flex-row.flip-flex .ie-col:last-child {
    margin-top: 0px;
  }
  .two-equal-added.flex-row.flip-flex .ie-col:first-child {
    margin-top: 30px;
  }
  .three-equal-added.flex-row .ie-col:first-child {
    margin: 0px;
  }
  .three-equal-added.flex-row .ie-col:nth-child(2) {
    margin: 20px 0px;
  }
  .three-equal-added.flex-row .ie-col:last-child {
    margin: 0px;
  }
  .four-equal-added.flex-row .ie-col:first-child {
    margin: 0px;
  }
  .four-equal-added.flex-row .ie-col:nth-child(2), .four-equal-added.flex-row .ie-col:nth-child(3), .four-equal-added.flex-row .ie-col:last-child {
    margin: 20px 0px 0px;
  }
  .two-unequal-added.flex-row {
    flex-direction: column;
    text-align: center;
  }
  .two-unequal-added .main-col {
    width: 100%;
    margin: 0px;
  }
  .two-unequal-added .sidebar-col {
    width: 100%;
    margin: 20px 0px 0px;
  }
  .two-unequal-added.flex-row.flip-flex {
    flex-direction: column-reverse;
  }
  .two-unequal-added.flip-flex .main-col {
    width: 100%;
    margin: 0px;
  }
  .two-unequal-added.flip-flex .sidebar-col {
    width: 100%;
    margin: 20px 0px 0px;
  }
}

/* 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 {
  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 .active-accord .accordion-title h3::before {
  transform: rotate(45deg);
}

.body-contentpage .accordion-title h3::after {
  content: '+';
  position: relative;
  display: inline-block;
  top: 3px;
  right: -20px;
  font-size: 30px;
  font-style: normal;
  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;
}

/* course */

.inner-page-wrapper table.scorecard th, .inner-page-wrapper table.scorecard td {
  text-align: center;
}

.inner-page-wrapper table.scorecard th:nth-of-type(2), .inner-page-wrapper table.scorecard td:nth-of-type(2) {
  background: var(--scorecardwhite);
  color: var(--bodycolor);
}

.inner-page-wrapper table.scorecard th:nth-of-type(5), .inner-page-wrapper table.scorecard td:nth-of-type(5) {
  background: var(--scorecardyellow);
  color: var(--bodycolor);
}

.inner-page-wrapper table.scorecard th:nth-of-type(8), .inner-page-wrapper table.scorecard td:nth-of-type(8) {
  background: var(--scorecardred);
  color: #fff;
}

/* hole */

.hole-nav {
  position: absolute;
  bottom: 100px;
  z-index: 20;
  left: 10px;
  right: 10px;
  text-align: center;
}

.hole-nav h2 {
  display: none;
}

.hole-nav ul {
  margin: 0px;
  font-size: 0px;
}

.hole-nav ul li {
  display: inline-block;
  margin: 0px 8px;
}

.hole-nav ul li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-family: var(--headingfont);
  font-weight: 600;
  text-shadow: 1px 1px #000;
}

.hole-nav ul li a:hover, .hole-nav ul li a:focus, .hole-nav ul li.current a {
  text-decoration: underline;
}

.hole-two-equal {
  margin: 100px auto 140px;
  max-width: 1100px;
  display: flex;
  align-items: center;
}

.hole-two-equal > div {
  flex: 1 1 0;
}

.hole-two-equal .hie-col:first-of-type {
  margin-right: 100px;
  text-align: right;
}

.hole-two-equal .hie-col:last-of-type {
  margin-left: 100px;
}

.hiec-yards {
  margin-bottom: 40px;
}

.hiec-yards > div {
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.hiec-yards .white::before {
  content: '';
  background: var(--scorecardwhite);
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  border: 1px solid #B8AB98;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  position: relative;
  top: 4px;
}

.hiec-yards .yellow::before {
  content: '';
  background: var(--scorecardyellow);
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  border: 1px solid #B8AB98;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  position: relative;
  top: 4px;
}

.hiec-yards .red::before {
  content: '';
  background: var(--scorecardred);
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  border: 1px solid #B8AB98;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  position: relative;
  top: 4px;
}

.hiec-yards .blue::before {
  content: '';
  background: var(--scorecardblue);
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  border: 1px solid #B8AB98;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  position: relative;
  top: 4px;
}

.hiec-tip h5 a {
  margin-top: 30px;
}

.hole-logo-row {
  margin: 80px 0px;
}

/* 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/padeswood/new-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 {
  width: 100%;
  min-height: 100px;
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
  background: #000;
}

body[class*="php-"] .th-left, .body-class-members .th-left, .body-class-visitorbooking .th-left, .body-class-getawayletter .th-left, [class*="body-class-setcoursestatus"] .th-left, .body-class-opens .th-left, .body-loginpage .th-left, .invalid-page .th-left {
  display: none;
}

body[class*="php-"] .th-right, .body-class-members .th-right, .body-class-visitorbooking .th-right, .body-class-getawayletter .th-right, [class*="body-class-setcoursestatus"] .th-right, .body-class-opens .th-left, .body-loginpage .th-right, .invalid-page .th-right {
  display: none;
}

body[class*="php-"] .top-header, .body-class-members .top-header, .body-class-visitorbooking .top-header, .body-class-getawayletter .top-header, [class*="body-class-setcoursestatus"] .top-header, .body-class-opens .top-header, .body-loginpage .top-header, .invalid-page .top-header {
  min-height: 0px;
}

body[class*="php-"] .bottom-header, .body-class-members .bottom-header, .body-class-visitorbooking .bottom-header, .body-class-getawayletter .bottom-header, [class*="body-class-setcoursestatus"] .bottom-header, .body-class-opens .bottom-header, .body-loginpage .bottom-header, .invalid-page .bottom-header {
  min-height: 100px;
}

body[class*="php-"] .bottom-header .header-space, .body-class-members .bottom-header .header-space, .body-class-visitorbooking .bottom-header .header-space, .body-class-getawayletter .bottom-header .header-space, [class*="body-class-setcoursestatus"] .bottom-header .header-space, .body-class-opens .bottom-header .header-space, .body-loginpage .bottom-header .header-space, .invalid-page .bottom-header .header-space {
  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;
  position: relative;
  top: 30px;
  left: 90px;
  margin-left: 0px;
  max-width: 1060px;
}

body[class*="php-"] .header-logo, .body-class-members .header-logo, .body-class-visitorbooking .header-logo, .body-class-getawayletter .header-logo, [class*="body-class-setcoursestatus"] .header-logo, .body-class-opens .header-logo, .body-loginpage .header-logo, .invalid-page .header-logo {
  width: 77px;
  top: 5px;
  margin-left: 0px;
}

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-social, .body-class-members .header-social, .body-class-visitorbooking .header-social, .body-class-getawayletter .header-social, [class*="body-class-setcoursestatus"] .header-social, .body-class-opens .header-social, .body-loginpage .header-social {
  top: 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;
}

body[class*="php-"] .navbar-inverse .nav > li.nav-menu-contact_us, .body-class-visitorbooking .navbar-inverse .nav > li.nav-menu-contact_us, .body-class-getawayletter .navbar-inverse .nav > li.nav-menu-contact_us, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li.nav-menu-contact_us, .body-class-opens .navbar-inverse .nav > li.nav-menu-contact_us, .body-loginpage .navbar-inverse .nav > li.nav-menu-contact_us, .body-class-members .navbar-inverse .nav > li.nav-menu-contact_us, .invalid-page .navbar-inverse .nav > li.nav-menu-contact_us {
  display: inline-block;
}

body[class*="php-"] .navbar-inverse .nav > li.nav-menu-book_a_tee_time, .body-class-visitorbooking .navbar-inverse .nav > li.nav-menu-book_a_tee_time, .body-class-getawayletter .navbar-inverse .nav > li.nav-menu-book_a_tee_time, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li.nav-menu-book_a_tee_time, .body-class-opens .navbar-inverse .nav > li.nav-menu-book_a_tee_time, .body-loginpage .navbar-inverse .nav > li.nav-menu-book_a_tee_time, .body-class-members .navbar-inverse .nav > li.nav-menu-book_a_tee_time, .invalid-page .navbar-inverse .nav > li.nav-menu-book_a_tee_time {
  display: inline-block;
}

body[class*="php-"] .navbar-inverse .nav > li.nav-menu-members_area, .body-class-visitorbooking .navbar-inverse .nav > li.nav-menu-members_area, .body-class-getawayletter .navbar-inverse .nav > li.nav-menu-members_area, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li.nav-menu-members_area, .body-class-opens .navbar-inverse .nav > li.nav-menu-members_area, .body-loginpage .navbar-inverse .nav > li.nav-menu-members_area, .body-class-members .navbar-inverse .nav > li.nav-menu-members_area, .invalid-page .navbar-inverse .nav > li.nav-menu-members_area {
  display: inline-block;
}

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 12px;
  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: 6px 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: 100px;
  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: 80px;
    margin: 0px;
    padding: 30px 0px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  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 {
    margin: 0px;
  }
}

/* login page */

#login {
  text-align: center;
}

#login h3 {
  margin: 0px 0px 20px;
  padding-bottom: 10px;
}

#login fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  display: inline-block;
  transform: translateX(-90px);
}

#login input[type*="submit"] {
  margin-top: 20px;
  letter-spacing: 2px;
  font-size: 16px;
}

#login > div {
  padding-bottom: 0px !important;
}

/* buttons */

input[type*="submit"], .content-wrapper a.btn, button.btn {
  display: inline-block;
  text-shadow: none;
  background: var(--headingcolor);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  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, .content-wrapper a.btn:hover, button.btn:hover, input[type*="submit"]:focus, .content-wrapper a.btn:focus, button.btn:focus {
  background: #000;
  color: #fff;
}

.btn-group > .btn:first-child, .btn-group > .btn:last-child {
  border-radius: 6px;
}

/* no pin page */

.php-login .nav > li.nav-menu-login\.php {
  display: none;
}

.php-login .nav > li.nav-menu-competition\.php, .php-login .nav > li.nav-menu-competition2\.php {
  display: none;
}

/* members */

thead {
  background: var(--headingcolor);
  color: #fff;
  font-weight: 400;
}

.body-class-members .content-wrapper thead a {
  color: #fff;
  text-decoration: underline;
}

.table th {
  font-weight: 400;
}

.php-index.body-class-members #container #globalwrap {
  background: transparent;
  border: none;
  padding: 0px;
}

.php-index #leftcontent > div, .php-index #rightcontent > div {
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--headingcolor);
  position: relative;
}

.php-index #globalwrap .weatherMini {
  position: absolute;
  top: 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*="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;
}

.php-roundmgmt table td, .php-roundmgmt table th {
  padding: 4px;
  font-size: 15px;
}

@media (min-width: 0px) and (max-width: 800px) {
  .php-competition2 table.comps-list-table .comp-ical-td {
    right: -10px;
  }
}

/* desktop responsive */

@media (min-width: 1600px) and (max-width: 1799px) {
  .page-space {
    padding: 0px 150px;
  }
  .hn-wrapper {
    width: 1000px;
  }
  .hn-wrapper .news-item {
    width: 1000px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .page-space {
    padding: 0px 100px;
  }
  .hn-wrapper {
    width: 900px;
  }
  .hn-wrapper .news-item {
    width: 900px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .page-space {
    padding: 0px 50px;
  }
  .hn-wrapper {
    width: 800px;
  }
  .hn-wrapper .news-item {
    width: 800px;
  }
  .body-public.body-class-home .nav-section, .body-public.body-contentpage .nav-section, .body-public.body-class- .nav-section {
    width: 1060px;
    margin: 15px auto 0px;
  }
  .navbar-inverse .nav > li > a {
    text-transform: capitalize;
  }
  .body-public.body-class-home .nav-section .nav > li:nth-of-type(1), .body-public.body-contentpage .nav-section .nav > li:nth-of-type(1), .body-public.body-class- .nav-section .nav > li:nth-of-type(1) {
    margin-left: 88px;
  }
  .body-public.body-class-home .nav-section .nav > li:nth-of-type(7), .body-public.body-contentpage .nav-section .nav > li:nth-of-type(7), .body-public.body-class- .nav-section .nav > li:nth-of-type(7) {
    margin-left: 130px;
  }
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .page-space {
    padding: 0px 25px;
  }
  .hn-wrapper {
    width: 650px;
  }
  .hn-wrapper .news-item {
    width: 650px;
  }
  .header-space {
    margin: 0px 30px;
  }
  .body-public.body-class-home .nav-section, .body-public.body-contentpage .nav-section, .body-public.body-class- .nav-section {
    width: 920px;
    margin: 15px auto 0px;
  }
  .navbar-inverse .nav > li > a {
    text-transform: capitalize;
    font-size: 13px;
    padding: 10px;
  }
  .body-public.body-class-home .nav-section .nav > li:nth-of-type(1), .body-public.body-contentpage .nav-section .nav > li:nth-of-type(1), .body-public.body-class- .nav-section .nav > li:nth-of-type(1) {
    margin-left: 75px;
  }
  .body-public.body-class-home .nav-section .nav > li:nth-of-type(7), .body-public.body-contentpage .nav-section .nav > li:nth-of-type(7), .body-public.body-class- .nav-section .nav > li:nth-of-type(7) {
    margin-left: 130px;
  }
  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: 14px;
    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-"] .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 {
    max-width: 820px;
  }
  body[class*="php-"] .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-visitorbooking .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-getawayletter .navbar-inverse .nav > li.nav-haslevel-2 > a::after, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-opens .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-loginpage .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
    display: none;
  }
  .php-roundmgmt table td, .php-roundmgmt table th {
    padding: 2px;
    font-size: 12px;
  }
  #global.teebooking .tabs li a {
    font-size: 100%;
    padding: 10px;
  }
  .php-roundmgmt .dateperiods {
    width: 56%;
  }
  .php-knockout #globalwrap {
    overflow-x: scroll;
  }
  .body-class-members.php-login .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 12px;
  }
  .body-class-members .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 14px;
    padding: 10px;
  }
  .table td, .table th, table td, table th {
    padding: 6px;
    font-size: 14px;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 8px 12px;
  }
}

.mf-copy br {
  display: none;
}

/* portrait tablet */

@media (min-width: 768px) and (max-width: 979px) {
  .page-space {
    padding: 0px 20px;
  }
  .hn-wrapper {
    width: 470px;
  }
  .hn-wrapper .news-item {
    width: 470px;
  }
  .hn-controls {
    width: 50px;
  }
  .hcsi-content {
    bottom: 40px;
    font-size: 18px;
  }
  .hole-two-equal .hie-col:first-of-type {
    margin-right: 40px;
  }
  .hole-two-equal .hie-col:last-of-type {
    margin-left: 40px;
  }
  .mf-copy {
    font-size: 14px;
  }
  .mf-copy br {
    display: block;
  }
  .hole-nav ul {
    width: 500px;
    margin: 0px auto;
  }
  .hole-nav ul li {
    margin: 5px 8px;
  }
  .hole-nav {
    bottom: 30px;
  }
  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: 1px;
    font-size: 10px;
  }
  #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-wrapper {
    position: relative;
    background: #000;
    min-height: 100px;
  }
  .home-page-wrapper, .inner-page-wrapper, .hole-page-wrapper {
    margin-top: 0px;
  }
  .header-space {
    margin: 0px 20px;
  }
  .header-logo {
    top: 5px;
    width: 77px;
  }
  .top-header {
    min-height: 40px;
  }
  .th-left {
    left: 10px;
    text-transform: capitalize;
    letter-spacing: 0px;
    top: 10px;
  }
  .th-right {
    right: 10px;
    text-transform: capitalize;
    letter-spacing: 0px;
    top: 10px;
  }
  .navbar-inverse .btn-navbar  {
    width: 105px;
    padding: 8px;
    margin-top: 0px;
    top: 52px;
    position: absolute;
    z-index: 50;
    right: 20px;
    font-size: 16px;
    background: var(--headingcolor2);
    color: #fff;
    margin-right: 0px;
    border-radius: 0px;
    box-shadow: none;
    border: none;
    transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
  }
  .navbar-inverse .btn-navbar:hover, .navbar-inverse .btn-navbar.active, .navbar-inverse .btn-navbar:focus {
    background: var(--dropdownmenu);
    color: #fff;
  }
  .btn-navbar .club-menu-button {
    font-family: var(--bodyfont);
    font-size: 15px;
    margin-left: 10px;
    font-weight: 400;
  }
  .club-menu-button-lines {
    margin-top: 3px;
    margin-right: 15px;
    float: left;
    transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    position: relative;
  }
  .navbar .btn-navbar .icon-bar {
    transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    box-shadow: none;
    width: 24px;
    background: #fff;
  }
  .navbar .btn-navbar:hover .icon-bar, .navbar .btn-navbar.active .icon-bar {
    background: #fff;
  }
  .btn-navbar .icon-bar + .icon-bar {
    margin-top: 0px;
  }
  .btn-navbar.active .icon-bar + .icon-bar {
    margin-top: 1px;
  }
  .nav-section {
    padding: 5px 0px;
    margin: 0px;
    top: 0px;
  }
  .top-bar {
    position: absolute;
    top: -1px;
  }
  .middle-bar {
    opacity: 1;
    top: 6px;
    position: absolute;
  }
  .bottom-bar {
    position: absolute;
    top: 12px;
  }
  .active .middle-bar {
    opacity: 0;
  }
  .active .top-bar {
    transform: rotate(45deg);
    top: 4px;
  }
  .active .bottom-bar {
    transform: rotate(-45deg);
    top: 4px;
  }
  .navbar-inverse .navbar-inner {
    padding: 5px 10px;
    text-align: left;
    top: 0px;
    margin: 50px 0px 20px;
  }
  .navbar .nav > li {
    display: block;
  }
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    font-weight: 500;
    color: var(--navlink);
    text-transform: capitalize;
    white-space: wrap;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .nav > li.current > a {
    color: var(--navactivelink);
    background: transparent;
  }
  .nav-collapse .dropdown-menu {
    background: var(--dropdownmenu);
  }
  .navbar-inverse .nav-collapse .dropdown-menu a {
    padding: 12px 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 {
     color: var(--navactivelink);
     background: transparent;
  }
  .home-slideshow .galleryInner, .home-slideshow .galleryInner img {
    height: auto !important;
  }
  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 {
    left: 0px;
    top: 0px;
  }
  body[class*="php-"] .navbar-inverse .btn-navbar, .body-class-members .navbar-inverse .btn-navbar, .body-class-visitorbooking .navbar-inverse .btn-navbar, .body-class-getawayletter .navbar-inverse .btn-navbar, [class*="body-class-setcoursestatus"] .navbar-inverse .btn-navbar, .body-class-opens .navbar-inverse .btn-navbar, .body-loginpage .navbar-inverse .btn-navbar, .invalid-page .navbar-inverse .btn-navbar {
    top: 32px;
  }
  body[class*="php-"] .navbar-inverse .navbar-inner, .body-class-members .navbar-inverse .navbar-inner, .body-class-visitorbooking .navbar-inverse .navbar-inner, .body-class-getawayletter .navbar-inverse .navbar-inner, [class*="body-class-setcoursestatus"] .navbar-inverse .navbar-inner, .body-class-opens .navbar-inverse .navbar-inner, .body-loginpage .navbar-inverse .navbar-inner, .invalid-page .navbar-inverse .navbar-inner {
    margin-top: 90px;
  }
  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;
  }
  .accordion-title {
    padding: 0px 30px;
  }
  .body-contentpage .accordion-title h3::before {
    right: 0px;
  }
  .body-contentpage .accordion-title h3::after {
    right: -20px;
  }
  .status-box {
    top: 100px;
    position: absolute;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .page-space {
    padding: 0px 20px;
  }
  .top-header::before {
    width: 40%;
  }
  .top-header::after {
    width: 40%;
  }
  .home-slideshow .galleryInner img {
    min-height: 250px;
    object-fit: cover;
  }
  .home-news {
    position: relative;
    background: #000;
    height: 130px;
  }
  .home-news .page-space {
    flex-direction: column;
  }
  .hn-title {
    margin: 0px auto;
    text-align: center;
  }
  .hn-wrapper {
    width: 440px;
    margin: 0px auto;
    text-align: center;
  }
  .hn-wrapper .news-item {
    width: 440px;
  }
  .hn-controls {
    margin: 0px auto;
    text-align: center;
  }
  .home-intro {
    margin: 60px auto;
  }
  .home-column-section {
    flex-direction: column;
  }
  .hcs-info {
    max-width: 300px;
    margin: 20px auto;
  }
  .pf-address {
    font-size: 14px;
  }
  .mf-copy {
    line-height: 26px;
    font-size: 14px;
  }
  .mf-copy a {
    display: block;
  }
  .mf-vert-line {
    display: none;
  }
  .pf-newsletter form input[type*="submit"] {
    position: relative;
    margin: 0px auto;
    border-radius: 6px;
  }
  .pf-newsletter form input[type*="text"] {
    padding-right: 8px;
    width: calc(100% - 18px);
  }
  .hole-nav {
    bottom: 30px;
  }
  .hole-nav ul {
    width: 420px;
    margin: 0px auto;
  }
  .hole-nav ul li {
    margin: 5px 4px;
  }
  .hole-two-equal {
    flex-direction: column-reverse;
    margin: 60px auto;
  }
  .hole-two-equal .hie-col:first-of-type {
    margin: 30px 0px 0px;
  }
  .hole-two-equal .hie-col:last-of-type {
    margin: 0px;
    text-align: center;
  }
  .hiec-yards {
    max-width: 210px;
    margin: 0px auto;
  }
  .accordion-content {
    overflow-x: scroll;
  }
  .inner-intro {
    margin-top: 60px;
  }
  .inner-intro h1 {
    margin-bottom: 30px;
  }
  .body-contentpage .additional-boxes {
    margin-bottom: 50px;
  }
  .two-equal-added.flex-row.flip-flex {
    flex-direction: column;
  }
  .two-equal-added.flex-row.flip-flex .ie-col:first-child {
    margin: 0px;
  }
  .two-equal-added.flex-row.flip-flex .ie-col:last-child {
    margin: 30px 0px 0px 0px;
  }
  .is-two-col, .is-two-col.flip-flex {
    flex-direction: column;
  }
  .htc-content {
    width: 100%;
    margin: 0px;
    text-align: center;
  }
  .flip-flex .htc-content {
    margin: 0px;
  }
  .htc-pic {
    width: 100%;
    margin: 30px 0px 0px;
    text-align: center;
  }
  .flip-flex .htc-pic {
    margin: 30px 0px 0px;
  }
  .three-equal-added .ie-col img {
    max-width: 400px;
    width: 100%;
  }
  .hn-wrapper {
    height: 62px;
  }
  .home-news {
    height: 130px;
  }
  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: 6px;
    border-bottom-left-radius: 6px;
  }
  #globalwrap .btn-group .btn:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .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;
  }
  .th-left {
    font-size: 11px;
    left: 0px;
  }
  .th-right {
    font-size: 11px;
    right: 0px;
  }
  .top-header::before {
    width: 33%;
  }
  .top-header::after {
    width: 33%;
  }
  .hn-wrapper {
    width: 280px;
  }
  .hn-wrapper .news-item {
    width: 280px;
  }
  .logo-row .wysiwyg-editable {
    flex-direction: column;
  }
  .logo-row .wysiwyg-editable a {
    margin: 15px 0px;
  }
  .hole-nav {
    bottom: 0px;
    position: relative;
    background: #000;
    left: 0px;
    right: 0px;
  }
  .hole-nav ul {
    width: 280px;
    margin: 0px auto;
  }
  .hole-nav ul li {
    margin: 5px 4px;
  }
}

/* editor */

.ig-wysiwyg-editor-navbar .navbar-inverse .navbar-inner {
  background: #171717;
  padding: 4px 0px;
}

.php-ckeditor .home-overtop {
  display: none;
}

.php-ckeditor .hs-news {
  position: relative;
  margin-top: 20px;
}

.body-class-members.php-ckeditor #container #globalwrap {
  margin-top: 160px;
}

.php-ckeditor .hcsi-pic a::before {
  display: none;
}

.php-ckeditor .hole-nav {
  position: relative;
  bottom: 0px;
  margin-top: 15px;
}

/* custom template editor */

.php-ckeditor .content-wrapper {
  margin-top: 100px;
}

.php-ckeditor .extra-nav, .php-ckeditor .carousel-nav {
  position: fixed;
  top: 40px;
  background: #171717;
  padding: 5px 0px;
  width: 100%;
  z-index: 100;
}

.php-ckeditor .extra-nav a, .php-ckeditor .carousel-nav a {
  display: inline-block;
  padding: 5px 10px;
  background: var(--headingcolor);
  margin-right: 5px;
  color: #fff;
  font-size: 12px;
}

.php-ckeditor .extra-nav a:hover, .php-ckeditor .extra-row a:focus, .php-ckeditor .carousel-nav a:hover, .php-ckeditor .carousel-nav 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, .php-ckeditor.no-carousel-nav .carousel-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, .php-ckeditor .additional-carousel-items .custom-carousel-item:first-child .added-section-move-up {
  display: none;
}

.php-ckeditor .additional-boxes .inserted-block:last-child .added-section-move-down, .php-ckeditor .additional-carousel-items .custom-carousel-item:last-child .added-section-move-up {
  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 */

/* home pop up */

.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: 800px) {
  .home-modal-body {
    height: 760px;
  }
}

@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;
  }
}

.php-ckeditor .home-modal {
  background: transparent;
  width: auto;
  height: auto;
  position: relative;
  top: 0px;
}

/* scroll to top */

.scrollTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
}

.scrollTop a {
  opacity: 0;
  background-color: var(--headingcolor);
  border: 2px solid var(--headingcolor2);
  border-radius: 50px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: white;
  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: 16px;
  margin-top: 6px;
}

.scrollTop a:hover {
  color: #fff;
  background: #000;
  cursor: pointer;
}

@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;
  }
}

.expand-page.body-contentpage.body-class-members {
  background: #fff;
  margin: 0px;
}

.expand-page.body-contentpage.body-class-members .content-wrapper {
  width: 100%;
  margin: 0px;
}

.expand-page.body-contentpage.body-class-members #container #globalwrap {
  border: none;
  padding: 0px;
  margin: 0px;
}

.expand-page.body-contentpage.body-class-members .members-footer {
  position: relative;
  width: auto;
  height: auto;
}

@media (min-width: 0px) and (max-width: 767px) {
  .expand-page.body-contentpage.body-class-members .members-footer {
    margin: 0px 10px 20px;
  }
  .expand-page.body-contentpage.body-class-members .content-wrapper .inner-page-wrapper, .expand-page.body-contentpage.body-class-members .content-wrapper .hole-page-wrapper {
    margin: 0px 10px;
  }
}

/* custom carousel */

.custom-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.additional-carousel-items {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  left: 0px;
  align-items: center;
  transition: all 1000ms ease-in-out;
  -moz-transition: all 1000ms ease-in-out;
  -webkit-transition: all 1000ms ease-in-out;
}

.custom-carousel-item {
  width: 390px;
  display: inline-block;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 1000ms ease-in-out;
  -moz-transition: all 1000ms ease-in-out;
  -webkit-transition: all 1000ms ease-in-out;
}

.cci-pic {
  position: relative;
}

.cci-pic img {
  max-height: 240px;
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.portrait-image .cci-pic img {
  max-height: 420px;
  height: 420px;
}

.cci-pic .cci-content {
  position: absolute;
  bottom: 30px;
  left: 10px;
  right: 10px;
  color: #fff;
}

.cci-content h4 {
  color: #fff;
}

.custom-carousel-controls {
  width: 150px;
  margin: 40px auto 0px;
  text-align: center;
}

.ccc-prev {
  text-align: left;
  font-size: 32px;
  display: inline-block;
  width: 40px;
}

.ccc-prev:hover {
  cursor: pointer;
}

.ccc-next {
  text-align: right;
  font-size: 32px;
  display: inline-block;
  width: 40px;
}

.ccc-next:hover {
  cursor: pointer;
}

@media (min-width: 0px) and (max-width: 480px) {
  .custom-carousel-item {
    margin: 0px 10px;
  }
}

.php-ckeditor .custom-carousel-item {
  position: relative;
  padding: 30px 0px;
  margin: 30px 20px;
}

.php-ckeditor .additional-carousel-items {
  display: block;
}

.php-index #rightcontent div:nth-of-type(2) span.updatedate:nth-of-type(2) {
  display: none;
}

.php-index #leftcontent i {
  font-size: 24px;
}

/* invalid page */

.invalid-page {
  background: url('/images/resources/padeswood/new-members-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

@media (min-width: 980px) {
  .invalid-page.body-contentpage.body-public .nav-section {
    margin-top: 0px;
  }
  .invalid-page.body-public.body-contentpage .nav-section .nav > li:nth-of-type(1) {
    margin: 0px;
  }
  .invalid-page.body-public.body-contentpage .nav-section .nav > li:nth-of-type(7) {
    margin: 0px;
  }
}

.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: 80px;
  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: 768px) and (max-width: 979px) {
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    bottom: 40px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    bottom: 0px;
  }
  #globalwrap [class*="-slideshow"] .nivo-caption h4 {
    font-size: 16px;
    line-height: 24px;
  }
}

/* forms */

.inner-page-wrapper form input {
  background: #ddd;
  border-radius: 0px;
  border: 1px solid var(--headingcolor);
  height: 30px;
  width: 90%;
  text-align: center;
}

.inner-page-wrapper form textarea {
  background: #ddd;
  border-radius: 0px;
  border: 1px solid var(--headingcolor);
  height: 90px;
  width: 90%;
  text-align: center;
}

.inner-page-wrapper form select {
  background: #ddd;
  border-radius: 0px;
  border: 1px solid var(--headingcolor);
  height: 30px;
  width: 90%;
  box-sizing: content-box;
  text-align: center;
}

.inner-page-wrapper .htc-pic form input, .inner-page-wrapper .htc-pic form textarea, .inner-page-wrapper .htc-pic form select {
  background: #fff;
}

@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: transparent;
  color: var(--headingcolor);
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: 1px solid var(--headingcolor);
}

.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, .htc-content ul, .inner-full-added ul, .ie-col ul, .hte-content ul {
  margin: 0px 0px 10px;
}

.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, .htc-content ul li, .ie-col ul li, .hte-content ul li {
  line-height: 28px;
  list-style: none;
  position: relative;
  margin-left: 15px;
}

.inner-intro ul li, .inner-full-added ul li {
  line-height: 28px;
  list-style: none;
}

.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, .htc-content ul li::before, .ie-col ul li::before, .hte-content ul li::before {
  content: '\f111';
  font-family: 'FontAwesome';
  font-size: 7px;
  margin-right: 6px;
  color: var(--headingcolor);
  position: absolute;
  top: 0px;
  left: -15px;
}

.inner-intro 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-intro ol, .inner-full ol, .ie-col ol, .inner-start ol, .ie-col ol {
  margin: 0px 0px 10px;
}

.inner-intro ol li, .inner-full ol li, .ie-col ol li, .inner-start ol li, .ie-col ol li  {
  line-height: 28px;
  list-style-position: inside;
}

.inner-intro .gallery-thumbs ul li::before, .inner-start .gallery-thumbs ul li::before, .body-class-members .gallery-thumbs ul li::before {
  display: none;
}

.inner-page-wrapper form input[type*="radio"] {
  width: auto;
  margin: 0px;
}

.inner-page-wrapper form input[type*="checkbox"] {
  width: auto;
  margin: 0px;
}

@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-full-added table th, .is-two-col table th, .ie-col table th {
  border: 2px solid var(--headingcolor);
  padding: 6px;
  font-weight: 400;
  background: var(--headingcolor);
  color: #fff;
  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-full-added table td, .is-two-col table td, .ie-col table td {
  border: 2px solid var(--headingcolor);
  padding: 6px;
}

@media (min-width: 768px) and (max-width: 979px) {
  .inner-intro table th, .members-page table th, .inner-full-added table th, .is-two-col table th, .ie-col table th {
    padding: 4px;
    font-size: 14px;
  }
  .inner-intro table td, .members-page table td, .inner-full-added table td, .is-two-col table td, .ie-col table td {
    padding: 4px;
    font-size: 14px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-intro table th, .members-page table th, .inner-full-added table th, .is-two-col table th, .ie-col table th {
    padding: 1px;
    font-size: 14px;
    border-width: 1px;
  }
  .inner-intro table td, .members-page table td, .inner-full-added table td, .is-two-col table td, .ie-col table td {
    padding: 1px;
    font-size: 14px;
    border-width: 1px;
  }
}

[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 {
  display: none !important;
}

.home-slideshow > .wysiwyg-editable > br {
  display: none;
}

.inner-page-wrapper table.scorecard thead tr:first-of-type th {
  border-top: 2px solid var(--headingcolor);
}

.inner-page-wrapper .hs-news, .hole-page-wrapper .hs-news {
  display: none;
}

.page-url-our_team .two-equal-added.flex-row {
  align-items: start;
}

@media (min-width: 980px) {
  .no-slideshow-page {
    margin-top: 160px;
  }
  .no-slidey .header-wrapper {
    min-height: 100px;
    background: var(--publicheaderbg);
  }
  .no-slidey .top-header {
    min-height: 50px;
  }
  .no-slidey .header-logo {
    top: 5px;
    width: 77px;
  }
  .no-slidey .th-left {
    top: 10px;
  }
  .no-slidey .th-right {
    top: 10px;
  }
  .body-public.body-contentpage.no-slidey .nav-section {
    margin-top: 6px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .pf-newsletter form .customFormLine:first-of-type label {
    position: relative;
    text-align: center;
    bottom: 0px;
    left: 0px;
  }
  .pf-newsletter form input[type*="submit"] {
    bottom: 0px;
  }
}

.home-slideshow video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.home-page-wrapper .home-slideshow {
  height: 100vh;
}

.home-slideshow::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
  z-index: 10;
}

@media (min-width: 980px) {
  .body-class-home.body-public .header-wrapper, .body-class-home.body-public .nav-section .navbar-inverse .nav > li > a {
    text-shadow: 1px 1px #000;
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  .home-page-wrapper .home-slideshow {
    line-height: 0px;
    height: auto;
  }
  .hs-news {
    line-height: 26px;
  }
  .home-slideshow video  {
    height: auto;
  }
  .accordion-object {
    padding: 5px 0px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .mf-copy {
    font-size: 14px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .content-wrapper table h5 a {
    padding: 5px;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0px;
    margin-right: 0px;
  }
}

.no-slideshow-page .home-slideshow {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .body-public .navbar-inverse .nav > li > a {
    font-size: 14px;
  }
}

.hs-news > .wysiwyg-editable > br {
  display: none;
}

@media (min-width: 0px) and (max-width: 979px) {
  .no-slideshow-page .inner-intro {
    margin-top: 60px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-full-added img, .inner-intro img {
    max-width: 400px;
    width: 100%;
  }
}

.php-ckeditor .home-slideshow::before {
  display: none;
}

.php-ckeditor .page-space {
  padding: 0px;
}

.php-ckeditor .home-news {
  position: relative;
  bottom: 0px;
  height: auto;
}

.php-ckeditor .home-news h2 {
  color: #fff;
}

/* carousel hack */

.home-news .inner-full-added {
  text-align: left;
}

.home-news a {
  color: #fff;
  display: block;
}

.body-public .home-news .additional-boxes {
  margin: 0px;
  padding: 0px;
  width: 10000px;
  position: absolute;
}

.home-news .inserted-block {
  float: left;
  width: 1200px;
  margin: 0px 20px 0px 0px;
  position: relative;
}

@media (min-width: 1600px) and (max-width: 1799px) {
  .home-news .inserted-block {
    width: 1000px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .home-news .inserted-block {
    width: 900px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .home-news .inserted-block {
    width: 800px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .home-news .inserted-block {
    width: 650px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .home-news .inserted-block {
    width: 470px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .home-news .inserted-block {
    width: 440px;
  }
  .home-news .inner-full-added {
    text-align: center;
  }
}

@media (min-width: 0px) and (max-width: 480px) {
  .home-news .inserted-block {
    width: 280px;
  }
  .hn-wrapper {
    height: 82px;
  }
  .home-news {
    height: 150px;
  }
}

.php-ckeditor .hn-wrapper {
  height: auto;
  width: auto;
}

.php-ckeditor .home-news .inserted-block {
  width: 100%;
}

.page-url-professional .inserted-block:first-of-type .two-equal-added.flex-row {
  align-items: start;
}

.inner-full-added img[width="16"], .inner-intro img[width="16"] {
  width: 16px;
}

.inner-page-wrapper #diaryTable form select {
  width: 170px;
  margin: 5px 0px;
}

/* end anton styles */