/* anton styles */

/* fonts */

.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* variables */

:root {
  --bodyfont: 'Montserrat', sans-serif;
  --headingfont: 'Montserrat', sans-serif;
  --headingcolor: #515151;
  --headingcontent: #515151;
  --headingcolor2: #333;
  --highlightcolor: #000;
  --hoverhighlight: #A5A623;
  --linkhighlight: #A5A623;
  --bodycolor: #333;
  --headerbg: #221E1F;
  --topfooterbg: #f4f4f4;
  --bottomfooterbg: #3B3B3B;
  --navlink: #fff;
  --navactivelink: #FDFE36;
  --dropdownbg: #221E1F;
  --dropdownlink: #C6C4C5;
  --scorecardwhite: #FFF;
  --scorecardyellow: #fc0;
  --scorecardred: #c80000;
  --scorecardgold: #ffd700; 
}

.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, .body-class-members.php-login .nav > li.nav-menu-competition2\.php, .body-public .nav > li.nav-menu-links, .fsn-menu #topmenu .nav > li.nav-menu-links {
  display: none;
}

/* general styles */

body {
  font-size: 16px;
  font-family: var(--bodyfont);
  color: var(--bodycolor);
  background: #fff;
}

h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: var(--headingcontent);
  margin-bottom: 30px;
  font-family: var(--headingfont);
}

h2 {
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: var(--headingcontent);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h3 {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  color: var(--headingcontent);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--bodyfont);
}

h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--headingcontent);
  margin-bottom: 20px;
  font-family: var(--headingfont);
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--headingcontent);
  margin-bottom: 20px;
  font-family: var(--bodyfont);
}

h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--headingcontent);
  font-family: var(--headingfont);
}

h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a, .hsf-main-news a.read-more, .pf-flex .pff-buttons a {
  background: var(--headingcolor);
  color: var(--navactivelink);
  display: inline-block;
  padding: 5px 25px;
  font-weight: 400;
  text-transform: initial;
  font-size: 16px;
  letter-spacing: 0.7px;
  border-radius: 8px;
  margin-top: 10px;
  font-family: var(--headingfont);
  position: relative;
}

@media (min-width: 768px) {
  .gallery-image .nav-controls a.next {
    margin-left: 10px;
  }
}

.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, .hsf-main-news a.read-more:hover, .hsf-main-news a.read-more:focus, .pf-flex .pff-buttons a:hover, .pf-flex .pff-buttons a:focus {
  background: #000;
  color: #fff;
  text-decoration: none;
}

a {
  color: var(--highlightcolor);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

a:hover, a:focus {
  color: var(--highlightcolor);
  text-decoration: underline;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* header styles */

.header-wrapper {
  position: fixed;
  z-index: 1001;
  top: 0px;
  left: 0px;
  width: 100%;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.fix .header-wrapper {
  background: rgba(0,0,0,0.6);
  min-height: 100px;
}

.header-logo {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 150px;
  top: 35px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.fix .header-logo {
  width: 83px;
  top: 8px;
}

.header-social {
  position: absolute;
  left: 60px;
  top: 70px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.fix .header-social {
  top: 40px;
}

.header-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 20px;
}

.header-social img {
  width: 19px;
  position: relative;
  top: -2px;
}

.header-button {
  width: 200px;
  height: 75px;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  position: absolute;
  top: 42px;
  right: 60px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.header-button:hover, .header-button:focus {
  background: black;
  cursor: pointer;
}

.fix .header-button {
  top: 12px;
}

.hb-line {
  width: 54px;
  height: 3px;
  display: inline-block;
  background: #fff;
  position: absolute;
  right: 35px;
}

.hb-line.line-1 {
  top: 25px;
}

.hb-line.line-2 {
  top: 38px;
}

.hb-line.line-3 {
  top: 51px;
}

.hb-menu {
  position: absolute;
  top: 30px;
  left: 35px;
  color: #fff;
  font-size: 18px;
}

.body-contentpage.body-public .nav-section, .body-class-home.body-public .nav-section {
  display: none;
}

/* nav */

.full-screen-nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background: #221E1F;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  overflow-y: auto;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.show-fsn .full-screen-nav {
  opacity: 1;
  visibility: visible;
  z-index: 1002;
}

.fsn-space {
  padding: 35px 60px;
}

.fsn-close {
  position: absolute;
  right: 60px;
  width: 180px;
  height: 75px;
}

.fsn-close:hover {
  cursor: pointer;
}

.fsn-cross {
  display: inline-block;
  background: var(--navactivelink);
  width: 36px;
  height: 2px;
  right: 35px;
  top: 38px;
  position: absolute;
}

.fsn-cross.cross-1 {
  transform: rotate(45deg);
}

.fsn-cross.cross-2 {
  transform: rotate(-45deg);
}

.fsn-close-text {
  color: #fff;
  font-size: 18px;
  position: absolute;
  left: 35px;
  top: 30px;
}

.fsn-logo {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 120px;
  z-index: 60;
}

.fsn-menu {
  margin: 160px auto 0px;
  text-align: center;
  max-width: 1500px;
}

.fsn-menu .nav > li > a {
  color: var(--navlink);
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: none;
  text-align: center;
  padding: 15px 10px;
  font-size: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

.fsn-menu .nav > li > a:hover, .fsn-menu .nav > li > a:focus, .fsn-menu .nav > li.current > a {
  background: transparent;
  color: var(--navactivelink);
}

.fsn-menu .nav > li:nth-of-type(1) {
  display: none;
  width: 14.28%;
}

.fsn-menu .nav > li:nth-of-type(3) {
  display: inline-block;
  width: 16.6667%;
}

.fsn-menu .nav > li:nth-of-type(4) {
  display: inline-block;
  width: 16.6667%;
}

.fsn-menu .nav > li:nth-of-type(5) {
  display: inline-block;
  width: 16.6667%;
}

.fsn-menu .nav > li:nth-of-type(6) {
  display: inline-block;
  width: 16.6667%;
}

.fsn-menu .nav > li:nth-of-type(7) {
  display: inline-block;
  width: 16.6667%;
}

.fsn-menu .nav > li:nth-of-type(8) {
  display: inline-block;
  width: 16.6667%;
  margin-top: 30px;
}

.fsn-menu .nav > li:nth-of-type(9) {
  display: inline-block;
  width: 16.6667%;
  margin-top: 30px;
}

.fsn-menu .nav > li:nth-of-type(10) {
  display: inline-block;
  width: 16.6667%;
  margin-top: 30px;
}

.fsn-menu .nav > li:nth-of-type(11) {
  display: inline-block;
  width: 16.6667%;
  margin-top: 30px;
}

.fsn-menu .nav > li:nth-of-type(12) {
  display: inline-block;
  width: 16.6667%;
  margin-top: 30px;
}

.fsn-menu .nav > li:nth-of-type(13) {
  display: inline-block;
  width: 16.6667%;
  margin-top: 30px;
}

.fsn-menu .dropdown-menu {
  background: transparent;
  position: relative;
  border: none;
  box-shadow: none;
  border-radius: none;
  display: block;
  width: 100%;
}

.fsn-menu .dropdown-menu > li > a {
  color: var(--dropdownlink);
  white-space: wrap;
  font-size: 15px;
}

.fsn-menu .dropdown-menu > li.current > a, .fsn-menu .dropdown-menu > li > a:hover, .fsn-menu .dropdown-menu > li > a:focus {
  color: var(--navactivelink);
  background: transparent;
}

.fsn-social {
  margin-top: 70px;
  text-align: center;
}

.fsn-social p {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.fsn-social a {
  font-size: 20px;
  margin: 0px 8px;
  color: #fff;
}

.fsn-social img {
  width: 19px;
  position: relative;
  top: -2px;
}

/* footer */

.public-footer {
  padding: 80px 0px;
  background: var(--topfooterbg);
}

.pf-flex {
  display: flex;
}

.public-footer h6 {
  margin: 0px 0px 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

.pf-flex a {
  color: var(--bodycolor);
}

.pf-flex a:hover, .pf-flex a:focus {
  text-decoration: underline;
}

.pff-contact {
  width: 23%
}

.pff-links {
  width: 45%;
  margin: 0px 20px;
}

.pffl-flex {
  display: flex;
}

.pffl-flex > div {
  flex: 1 1 0;
}

.pff-newsletter {
  width: 32%;
}

.pff-newsletter form {
  position: relative;
  margin: 0px;
}

.pff-newsletter label {
  position: absolute;
  bottom: 23px;
  left: 8px;
  opacity: 1;
  visibility: visible;
  transition: all 100ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  -webkit-transition: all 100ms ease-in-out;
}

.pff-newsletter .hide-label label {
  opacity: 0;
  visibility: hidden;
}

.pff-newsletter input[type*="text"] {
  width: calc(100% - 130px);
  padding-right: 120px;
  height: 46px;
}

.pff-newsletter input[type*="submit"] {
  position: absolute;
  right: 10px;
  bottom: 20px;
  height: 36px;
  background: #505050;
  color: var(--navactivelink);
  border-radius: 6px;
  margin: 0px !important;
  border: none;
  padding: 0px 15px;
}

.pff-newsletter input[type*="submit"]:hover, .pff-newsletter input[type*="submit"]:focus {
  background: #000;
}

.pffn-social {
  margin-top: 20px;
}

.pffn-social a {
  font-size: 24px;
  margin-right: 10px;
}

.pf-flex .pffn-social a:hover, .pf-flex .pffn-social a:focus {
  text-decoration: none;
  opacity: 0.7;
}

.pffn-social img {
  width: 22px;
  position: relative;
  top: -2px;
}

.members-footer {
  padding: 20px 0px;
  background: var(--bottomfooterbg);
  color: #fff;
}

.mf-flex {
  display: flex;
  align-items: center;
}

.mf-copy {
  width: 75%;
}

.mf-copy a {
  color: #fff;
}

.mf-copy a:hover, .mf-copy a:focus {
  color: var(--navactivelink);
  text-decoration: none;
}

.mf-vert {
  content: '';
  display: inline-block;
  background: #fff;
  width: 2px;
  height: 13px;
  position: relative;
  top: 2px;
  margin: 0px 6px;
}

.mf-ig {
  width: 25%;
  text-align: right;
}

.mf-ig img {
  width: 120px;
}

/* page */

#globalwrap {
  padding-top: 0px;
}

.page-space {
  padding: 0px 200px;
}

/* home */

.home-slideshow {
  position: relative;
}

.home-slideshow .galleryInner, .home-slideshow .galleryInner img {
  width: 100% !important;
  height: 100vh !important;
  object-fit: cover;
}

.home-intro {
  max-width: 800px;
  margin: 0px auto;
  padding-top: 90px;
  text-align: center;
}

.home-intro p:first-of-type {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
  line-height: 34px;
}

.home-intro h1 {
  letter-spacing: 2px;
  font-size: 50px;
  line-height: 60px;
}

.home-comp-cols {
  display: flex;
  margin-top: 80px;
}

.hc-upcoming {
  width: 50%;
  margin-right: 20px;
  background: #505050;
  color: white;
  position: relative;
  border-radius: 8px;
  padding: 30px;
}

.hcu-link {
  position: absolute;
  top: 25px;
  right: 30px;
}

.hcu-link a {
  display: inline-block;
  padding: 5px 15px;
  background: #393939;
  color: var(--navactivelink);
  border-radius: 8px;
}

.hcu-link a:hover, .hcu-link a:focus {
  background: #fff;
  text-decoration: none;
  color: var(--bodycolor);
}

.hc-upcoming h3 {
  margin: 0px;
  color: var(--navactivelink);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 30px;
  border-bottom: 1px solid #969696;
}

.hc-upcoming p {
  margin: 0px;
}

.hc-upcoming .upcomingcomp {
  display: flex;
  flex-direction: column-reverse;
  padding: 20px 0px;
  border-bottom: 1px solid #969696;
}

.hc-upcoming .upcomingcomp span {
  display: block;
}

.hc-upcoming .upcomingcomp span::before {
  content: '\f133';
  font-family: 'FontAwesome';
  margin-right: 8px;
  color: var(--navactivelink);
}

.hc-upcoming .upcomingcomp a {
  color: #fff;
}

.hc-upcoming .upcomingcomp a:hover, .hc-upcoming .upcomingcomp a:focus {
  color: var(--navactivelink);
  text-decoration: none;
}

.hc-latest {
  width: 50%;
  margin-left: 20px;
  background: #393939;
  color: #fff;
  position: relative;
  border-radius: 8px;
  padding: 30px;
}

.hcl-link {
  position: absolute;
  top: 25px;
  right: 30px;
}

.hcl-link a {
  display: inline-block;
  padding: 5px 15px;
  background: #505050;
  color: var(--navactivelink);
  border-radius: 8px;
}

.hcl-link a:hover, .hcl-link a:focus {
  background: #fff;
  text-decoration: none;
  color: var(--bodycolor);
}

.hc-latest h3 {
  margin: 0px;
  color: var(--navactivelink);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 30px;
  border-bottom: 1px solid #888888;
}

.hc-latest .recentcompresult {
  display: flex;
  flex-direction: column-reverse;
  padding: 20px 0px;
  border-bottom: 1px solid #969696;
}

.hc-latest .recentcompresult span {
  display: block;
}

.hc-latest .recentcompresult span::before {
  content: '\f133';
  font-family: 'FontAwesome';
  margin-right: 8px;
  color: var(--navactivelink);
}

.hc-latest .recentcompresult a {
  color: #fff;
}

.hc-latest .recentcompresult a:hover, .hc-latest .recentcompresult a:focus {
  color: var(--navactivelink);
  text-decoration: none;
}

.hn-intro {
  margin-top: 90px;
  position: relative;
}

.hn-intro h3 {
  margin: 0px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.news-jcarousel {
  width: 1400px;
  position: relative;
  height: 310px;
  margin: 40px 0px 0px;
  left: 0px;
  overflow: hidden;
}

.news-jcarousel .news-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
}

.news-jcarousel .news-item {
  float: left;
  position: relative;
  margin-right: 30px;
  margin-top: 10px;
  width: 675px;
  padding: 15px 0px;
  box-shadow: 2px 2px 10px 4px #e6e6e6;
  border-radius: 8px;
  height: 258px;
}

.news-jcarousel .news-item .img-polaroid {
  border: none;
  box-shadow: none;
  padding: 0px;
  width: 195px;
  height: 248px;
  object-fit: cover;
  object-position: center;
  margin: 0px 15px;
}

.news-jcarousel .media-body {
  padding-right: 15px;
}

.news-holder {
  position: relative;
}

.news-carousel-next {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  line-height: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--bodycolor);
  font-size: 24px;
  background: #f8f8f8;
  text-align: center;
  box-shadow: 0px 0px 5px 5px #e6e6e6;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.news-carousel-next:hover {
  cursor: pointer;
  background: var(--headingcolor);
  color: var(--navactivelink);
}

.hn-link {
  position: absolute;
  top: 4px;
  right: 0px;
}

.hn-link a {
  color: var(--bodycolor);
}

.home-diary-section {
  background: url('/images/resources/cornwallgolfunion/diary-bg.jpg');
  background-repeat: no-repeat;
  padding: 50px 0px;
  margin-top: 100px;
}

.home-diary-section h3 {
  color: #fff;
  letter-spacing: 2px;
  margin: 0px;
  text-transform: uppercase;
}

.home-diary-row {
  display: flex;
}

.hdr-main {
  width: 65%;
  margin-right: 30px;
  position: relative;
  overflow: hidden;
}

.hdr-main .row-fluid {
  display: none;
}

.hdr-main .event-jcarousel {
  width: 930px;
  overflow: hidden;
  height: 200px;
  position: relative;
  margin-top: 68px;
}

.hdr-main .fancyDiary {
  height: 200px;
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
}

.hdr-main .fancyDiary li {
  float: left;
  display: inline-block;
  width: 280px;
  margin-right: 30px;
}

.hdr-main .fancyEvent {
  margin-top: 25px;
}

.event-carousel-next {
  width: 52px;
  line-height: 52px;
  height: 52px;
  background: #F8F8F8;
  text-align: center;
  color: #333;
  border-radius: 50%;
  font-size: 22px;
  position: absolute;
  right: 0px;
  top: 118px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.event-carousel-next:hover {
  cursor: pointer;
  background: var(--headingcolor);
  color: var(--navactivelink);
}

.fancyDate {
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  width: 86px;
  padding: 13px 0px;
  display: flex;
  flex-direction: column-reverse;
  color: var(--navactivelink);
  text-align: center;
}

.fancyDate .fancyDay {
  font-size: 26px;
  line-height: 32px;
}

.fancyDate .fancyMonth {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 28px;
}

.fancyEvent {
  color: #fff;
}

.fancyEvent a {
  color: #fff;
  display: inline-block;
}

.fancyEvent a:hover, .fancyEvent a:focus {
  color: var(--navactivelink);
  text-decoration: none;
}

.hdr-side {
  width: 35%;
  background: rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 15px;
}

.hdr-side .row-fluid {
  display: none;
}

.hdr-side h3.diary-grid-month-date {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  margin: 0px 0px 15px;
  color: var(--navactivelink);
}

.hdr-side h3.diary-grid-month-date form {
  display: none !important;
}

.hdr-side .eventviewTableMonth th {
  text-align: center;
  font-weight: 400;
  padding: 4px 2px;
  color: #fff;
}

.hdr-side .eventviewTableMonth td {
  text-align: center;
  padding: 0px 2px;
  border: none;
  background: transparent;
}

.hdr-side .events {
  font-size: 0px;
  text-align: center;
  line-height: 8px;
}

.hdr-side .events .event::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  line-height: 6px;
  background: #fff;
  border-radius: 50%;
}

.hdr-side .month {
  display: none;
}

.hdr-side .date {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  text-align: center;
  margin: 0px auto;
  float: none;
  color: #fff;
}

.hdr-side .current-day .date {
  background: #373737;
  color: var(--navactivelink);
}

.logo-row {
  margin: 90px 0px;
}

.logo-row .wysiwyg-editable {
  display: flex;
}

.logo-row .wysiwyg-editable > * {
  margin: 0px 20px;
}

.logo-row .wysiwyg-editable > a:first-of-type {
  margin-left: 0px;
}

.logo-row .wysiwyg-editable > a:last-of-type {
  margin-right: 0px;
}

/* inner */

.body-contentpage #global > br {
  display: none;
}

.inner-nav {
  text-align: center;
}

.inner-nav h2 {
  display: none;
}

.inner-nav ul {
  margin: 0px;
  border-bottom: 1px solid #ccc;
  padding: 12px 0px;
}

.inner-nav ul li {
  display: inline-block;
  margin: 0px;
  line-height: 28px;
}

.inner-nav ul li a {
  display: inline-block;
  padding: 8px;
  position: relative;
}

.inner-nav ul li a:hover, .inner-nav ul li a:focus {
  text-decoration: none;
}

.inner-nav ul li a::after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 3px;
  height: 3px;
  width: 0px;
  background: #000;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.inner-nav ul li.current a::after, .inner-nav ul li a:hover::after, .inner-nav ul li a:focus::after {
  width: 100%;
}

.inner-intro {
  margin: 50px auto;
  text-align: center;
  max-width: 1200px;
}

.narrow-page .inner-intro {
  text-align: center;
  margin: 50px auto;
  max-width: 850px;
}

/* inner comp results */

.page-url-cgu_competition_results .recentcomps {
  position: relative;
  height: 624px;
  overflow: hidden;
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.page-url-cgu_competition_results.show-all-comps .recentcomps {
  height: 1248px;
}

.page-url-cgu_competition_results .inner-intro {
  position: relative;
}

.page-url-cgu_competition_results .inner-intro p {
  margin: 0px;
}

.page-url-cgu_competition_results .comp-expand {
  position: absolute;
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  color: var(--bodycolor);
  bottom: -24px;
  background: #fff;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 5px #e6e6e6;
  margin: 0px auto;
  left: 0px;
  right: 0px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.page-url-cgu_competition_results.show-all-comps .comp-expand {
  transform: rotate(180deg);
}

.page-url-cgu_competition_results .comp-expand:hover, .page-url-cgu_competition_results .comp-expand:focus {
  background: var(--bodycolor);
  color: var(--navactivelink);
  cursor: pointer;
}

.page-url-cgu_competition_results .recentcompresult {
  padding: 12px 50px;
  background: #EFEFEF;
  text-align: left;
  display: flex;
}

.page-url-cgu_competition_results .recentcompresult:nth-of-type(even) {
  background: #e5e5e5;
}

.page-url-cgu_competition_results .recentcompresult a {
  width: 60%;
  margin-right: 15px;
}

.page-url-cgu_competition_results .recentcompresult span {
  width: 40%;
  margin-left: 15px;
}

/* 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;
}

.additional-boxes {
  margin: 0px auto 100px;
  max-width: 1200px;
}

.narrow-page .inner-full-added {
  max-width: 850px;
  margin: 0px auto;
}

.inner-full-added.ifa-bg {
  max-width: 1400px;
  background: #efefef;
  border-radius: 8px;
  padding: 25px 50px;
}

.narrow-page .inner-full-added.ifa-bg {
  max-width: 1050px;
}

.inner-page-wrapper a[href*=".pdf"]::before {
  content: '\f1c1';
  font-family: 'FontAwesome';
  margin-right: 6px;
}

.inserted-block {
  position: relative;
  margin: 65px 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;
}

.two-equal-added.bg-cols {
  text-align: center;
  align-items: start;
}

.bg-cols .ie-col {
  background: transparent;
  border-bottom: 5px solid var(--altbuttonbg);
}

.bg-cols hr {
  border-color: #D2CBC1;
}

.bg-cols h3 {
  background: var(--headingcolor);
  color: #fff;
  padding: 8px 10px;
  margin: 0px 0px 20px;
}

.bg-cols table {
  max-width: 450px;
  margin: 0px auto;
}

.bg-cols table em {
  font-size: 28px;
}

.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: 2px 0px;
}

.body-contentpage .accordion-title:hover {
  cursor: pointer;
}

.accordion-object {
  padding: 0px;
}

.accordion-title {
  position: relative;
}

.body-contentpage .accordion-title h3 {
  margin: 0px; 
  font-size: 20px;
  line-height: 30px;
  background: #505050;
  padding: 15px 30px;
  color: var(--navactivelink);
  position: relative;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.body-contentpage .accordion-title:hover h3 {
  background: #282828;
}

.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: '\f106';
  font-family: 'FontAwesome';
  transform: rotate(180deg);
  position: absolute;
  display: inline-block;
  top: 15px;
  right: 8px;
  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(0deg);
}

.body-contentpage .accordion-content {
  display: none;
  padding-top: 20px;
}

/* 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, body[class*="match"]:not(.body-contentpage) {
  background: url('/images/resources/cornwallgolfunion/members-bg-default.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, body[class*="match"]:not(.body-contentpage) .header-wrapper {
  background: #221E1F;
  width: 100%;
  min-height: 100px;
  position: relative;
  left: 0px;
  right: 0px;
  top: 0px;
}

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, body[class*="match"]:not(.body-contentpage) .nav-section {
  margin-top: 0px;
  width: auto;
  display: block;
  position: relative;
  top: 30px;
}

.navbar-inverse .navbar-inner {
  background: transparent;
  border: none;
  box-shadow: 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 {
  color: var(--navactivelink);
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  background: transparent;
  color: var(--navactivelink);
  box-shadow: none;
}

.dropdown-menu {
  background: #000;
}

.dropdown-menu > li > a {
  color: var(--dropdownlink);
}

.dropdown-menu > li.current > a, .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  background: transparent;
  color: var(--navactivelink);
}

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, .body-public.body-contentpage.invalid-page .header-logo, body[class*="match"]:not(.body-contentpage) .header-logo {
  float: left;
  margin-left: 0px;
  top: 5px;
  position: relative;
  width: 87px;
  font-size: 0px;
  opacity: 1;
  visibility: visible;
  z-index: 30;
}

body[class*="php-"] .header-logo img, .body-class-members .header-logo img, .body-class-visitorbooking .header-logo img, .body-class-getawayletter .header-logo img, [class*="body-class-setcoursestatus"] .header-logo img, .body-class-opens .header-logo img, .body-loginpage .header-logo img, .body-public.body-contentpage.invalid-page .header-logo img, body[class*="match"]:not(.body-contentpage) .header-logo img {
  width: auto;
  margin: 0px;
  top: 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, .invalid-page .header-login, body[class*="match"]:not(.body-contentpage) .header-login {
  display: none;
}

body[class*="php-"] .header-s-w, .body-class-members .header-s-w, .body-class-visitorbooking .header-s-w, .body-class-getawayletter .header-s-w, [class*="body-class-setcoursestatus"] .header-s-w, .body-class-opens .header-s-w, .body-loginpage .header-s-w, .invalid-page .header-s-w, body[class*="match"]:not(.body-contentpage) .header-s-w {
  display: none;
}

.body-class-members .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, body[class*="match"]:not(.body-contentpage) .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, body[class*="match"]:not(.body-contentpage) .header-status {
  display: none;
}

body[class*="php-"] .header-button, .body-class-members .header-button, .body-class-visitorbooking .header-button, .body-class-getawayletter .header-button, [class*="body-class-setcoursestatus"] .header-button, .body-class-opens .header-button, .body-loginpage .header-button, body[class*="match"]:not(.body-contentpage) .header-button {
  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, body[class*="match"]:not(.body-contentpage) .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, body[class*="match"]:not(.body-contentpage) .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, body[class*="match"]:not(.body-contentpage) .header-top-right {
  top: 10px;
  display: none;
}

body[class*="php-"] .header-info, .body-class-members .header-info, .body-class-visitorbooking .header-info, .body-class-getawayletter .header-info, [class*="body-class-setcoursestatus"] .header-info, .body-class-opens .header-info, .body-loginpage .header-info, body[class*="match"]:not(.body-contentpage) .header-info {
  margin-bottom: 10px;
}

.body-class-members .navbar-inverse .nav > li {
  float: left;
  border-bottom: none;
}

body[class*="php-"] .navbar-inverse .nav > li > a, .body-class-visitorbooking .navbar-inverse .nav > li > a, .body-class-getawayletter .navbar-inverse .nav > li > a, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li > a, .body-class-opens .navbar-inverse .nav > li > a, .body-loginpage .navbar-inverse .nav > li > a, .body-class-members .navbar-inverse .nav > li > a, .invalid-page .navbar-inverse .nav > li > a, body[class*="match"]:not(.body-contentpage) .navbar-inverse .nav > li > a {
  text-transform: capitalize;
  font-size: 15px;
  letter-spacing: 0px;
  padding: 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, .invalid-page .header-space, body[class*="match"]:not(.body-contentpage) .header-space {
  width: 1170px;
  margin: 0px auto;
}

.body-class-members #hamburger-icon {
  position: relative;
  display: none;
}

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, .invalid-page #hamburger-icon, body[class*="match"]:not(.body-contentpage) #hamburger-icon {
  height: 90px;
}

.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 {
  top: 5px;
}

.body-class-members .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, body[class*="match"]:not(.body-contentpage) .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, body[class*="match"]:not(.body-contentpage) .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*="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: 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"]:not(.body-contentpage) #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: 980px) {
  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"]:not(.body-contentpage), .invalid-page {
   margin-bottom: 140px; 
  }
  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"]:not(.body-contentpage) .members-footer, .invalid-page .members-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 40px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  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"]:not(.body-contentpage), .invalid-page {
   margin-bottom: 175px; 
  }
  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"]:not(.body-contentpage) .members-footer, .invalid-page .members-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 75px;
  }
}

/*@media (min-width: 0px) and (max-width: 767px) {
  html {
    position: relative;
    min-height: 100%;
  }
  body[class*="php-"], .body-class-members, .body-class-visitorbooking, .body-class-getawayletter, [class*="body-class-setcoursestatus"], .body-class-opens, .body-loginpage, body[class*="match"]:not(.body-contentpage), .invalid-page {
   margin-bottom: 210px; 
  }
  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"]:not(.body-contentpage) .members-footer, .invalid-page .members-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 105px;
  }
}*/

/* login page */

#login {
  text-align: center;
}

#login h3 {
  margin: 0px 0px 20px;
  padding-bottom: 10px;
}

#login fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  display: inline-block;
  transform: translateX(-90px);
}

#login input[type*="submit"] {
  margin-top: 20px;
  letter-spacing: 2px;
  font-size: 16px;
}

#login > div {
  padding-bottom: 0px !important;
}

/* buttons */

input[type*="submit"], a.btn, button.btn {
  display: inline-block;
  text-shadow: none;
  background: var(--headingcolor);
  color: var(--navactivelink);
  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, input[type*="submit"]:focus, a.btn:focus, button.btn:focus {
  background: #000;
  color: #fff;
}

/* 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-index #globalwrap .weatherImage i {
  font-size: 28px;
}

.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"]:not(.body-contentpage) .header-wrapper {
  position: relative;
}

.body-class-members.body-contentpage .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.body-class-members.body-contentpage .content-wrapper .container {
  width: auto;
}

.php-eclectic table thead.tableFloatingHeaderOriginal {
  background-color: var(--headingcolor) !important;
}

.php-boardcomps a.btn {
  width: 250px;
  display: block;
  font-size: 14px;
  margin: 5px 0px;
}

.php-boardcomps a.btn.pull-right {
  float: none;
  margin-top: -27px;
}

#memteetimes thead th {
  color: #fff;
}

.php-directory .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .php-friends .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
  font-size: 16px;
}

.php-diary .diary-nav-right a {
  transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -webkit-transition: all 0ms ease-in-out;
}

.php-log #globalwrap {
  overflow-x: scroll;
}

.php-log #globalwrap table tr td:nth-child(3) {
  word-break: break-word;
}

@media (min-width: 0px) and (max-width: 800px) {
  .php-competition2 table.comps-list-table .comp-ical-td {
    right: -10px;
  }
}

/* desktop responsive */

@media (min-width: 1600px) and (max-width: 1799px) {
  .page-space {
    padding: 0px 150px;
  }
  .news-jcarousel {
    width: 1300px;
  }
  .news-jcarousel .news-item {
    width: 625px;
  }
  .hdr-main .event-jcarousel {
    width: 790px;
  }
  .hdr-main .fancyDiary li {
    width: 245px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .page-space {
    padding: 0px 100px;
  }
  .news-jcarousel {
    width: 1200px;
  }
  .news-jcarousel .news-item {
    width: 575px;
  }
  .news-jcarousel .news-summary {
    font-size: 14px;
    line-height: 24px;
  }
  .hdr-main .event-jcarousel {
    width: 690px;
    height: 220px;
  }
  .hdr-main .fancyDiary li {
    width: 202px;
  }
  .hdr-main .fancyDiary {
    height: 220px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .page-space {
    padding: 0px 50px;
  }
  .news-jcarousel {
    width: 1100px;
  }
  .news-jcarousel .news-item {
    width: 525px;
  }
  .news-jcarousel .news-summary {
    font-size: 14px;
    line-height: 24px;
  }
  .hdr-main .event-jcarousel {
    width: 690px;
    height: 220px;
  }
  .hdr-main .fancyDiary li {
    width: 202px;
  }
  .hdr-main .fancyDiary {
    height: 220px;
  }
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .page-space {
    padding: 0px 25px;
  }
  .hc-upcoming h3 {
    letter-spacing: 0px;
    text-transform: capitalize;
  }
  .hc-latest h3 {
    letter-spacing: 0px;
    text-transform: capitalize;
  }
  .news-jcarousel {
    width: 870px;
  }
  .news-jcarousel .news-item {
    width: 410px;
  }
  .news-jcarousel .news-item h4 {
    font-size: 16px;
    line-height: 26px;
  }
  .news-jcarousel .news-date {
    font-size: 12px;
    line-height: 22px;
  }
  .news-jcarousel .news-summary {
    font-size: 12px;
    line-height: 22px;
  }
  .hdr-main .event-jcarousel {
    width: 500px;
    height: 220px;
  }
  .hdr-main .fancyDiary li {
    width: 222px;
  }
  .hdr-main .fancyDiary {
    height: 220px;
  }
  .news-jcarousel .news-item .img-polaroid {
    width: 155px;
    height: 208px;
  }
  .header-button {
    right: 15px;
  }
  .public-footer h6 {
    text-transform: initial;
  }
  .pff-contact {
    font-size: 15px;
  }
  .mf-copy {
    font-size: 13px;
  }
  .fsn-menu .nav > li:nth-of-type(1) {
    display: none;
    width: 20%;
  }
  .fsn-menu .nav > li:nth-of-type(3) {
    display: inline-block;
    width: 20%;
  }
  .fsn-menu .nav > li:nth-of-type(4) {
    display: inline-block;
    width: 20%;
  }
  .fsn-menu .nav > li:nth-of-type(5) {
    display: inline-block;
    width: 20%;
  }
  .fsn-menu .nav > li:nth-of-type(6) {
    display: inline-block;
    width: 20%;
  }
  .fsn-menu .nav > li:nth-of-type(7) {
    display: inline-block;
    width: 20%;
  }
  .fsn-menu .nav > li:nth-of-type(8) {
    display: inline-block;
    width: 20%;
  }
  .fsn-menu .nav > li:nth-of-type(9) {
    display: inline-block;
    width: 20%;
    margin-top: 30px;
  }
  .fsn-menu .nav > li:nth-of-type(10) {
    display: inline-block;
    width: 20%;
    margin-top: 30px;
  }
  .fsn-menu .nav > li:nth-of-type(11) {
    display: inline-block;
    width: 20%;
    margin-top: 30px;
  }
  .fsn-menu .nav > li:nth-of-type(12) {
    display: inline-block;
    width: 20%;
    margin-top: 30px;
  }
  .fsn-menu .nav > li:nth-of-type(13) {
    display: inline-block;
    width: 20%;
    margin-top: 30px;
  }
  .inner-nav ul li a {
    font-size: 13px;
  }
  body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, .invalid-page .header-space, body[class*="match"]:not(.body-contentpage) .header-space {
    width: 940px;
  }
  body[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, .invalid-page .content-wrapper, body[class*="match"]:not(.body-contentpage) .content-wrapper {
    width: 940px;
  }
  body[class*="php-"] .navbar-inverse .nav > li > 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, body[class*="match"]:not(.body-contentpage) .navbar-inverse .nav > li > a {
    font-size: 12px;
    padding: 10px 7px;
  }
  .body-class-members .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 14px;
    padding: 10px;
  }
  .php-roundmgmt table td, .php-roundmgmt table th {
    padding: 2px;
    font-size: 12px;
  }
  #global.teebooking .tabs li a {
    font-size: 100%;
    padding: 10px;
  }
  .php-roundmgmt .dateperiods {
    width: 56%;
  }
  .php-knockout #globalwrap {
    overflow-x: scroll;
  }
  .body-class-members.php-login .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 12px;
    padding: 10px 7px;
  }
  .body-class-members .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 16px;
  }
  .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;
  }
  .hdr-main .event-jcarousel{
    height: 220px;
    width: 370px;
  }
  .hdr-main .fancyDiary {
    height: 220px;
  }
  .hdr-main .fancyDiary li {
    width: 160px;
  }
  .news-jcarousel {
    width: 670px;
  }
  .news-jcarousel .news-item {
    width: 660px;
  }
  .logo-row .wysiwyg-editable {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
  }
  .pf-flex {
    display: block;
  }
  .pff-contact {
    margin: 0px;
    width: 100%;
  }
  .pff-links {
    margin: 30px 0px;
    width: 100%;
  }
  .pff-newsletter {
    width: 100%;
    margin: 0px;
  }
  .fsn-menu .nav > li:nth-of-type(1) {
    display: none;
    width: 25%;
  }
  .fsn-menu .nav > li:nth-of-type(3) {
    display: inline-block;
    width: 25%;
  }
  .fsn-menu .nav > li:nth-of-type(4) {
    display: inline-block;
    width: 25%;
  }
  .fsn-menu .nav > li:nth-of-type(5) {
    display: inline-block;
    width: 25%;
  }
  .fsn-menu .nav > li:nth-of-type(6) {
    display: inline-block;
    width: 25%;
  }
  .fsn-menu .nav > li:nth-of-type(7) {
    display: inline-block;
    width: 25%;
  }
  .fsn-menu .nav > li:nth-of-type(8) {
    display: inline-block;
    width: 25%;
  }
  .fsn-menu .nav > li:nth-of-type(9) {
    display: inline-block;
    width: 25%;
    margin-top: 30px;
  }
  .fsn-menu .nav > li:nth-of-type(10) {
    display: inline-block;
    width: 25%;
    margin-top: 30px;
  }
  .fsn-menu .nav > li:nth-of-type(11) {
    display: inline-block;
    width: 25%;
    margin-top: 30px;
  }
  .fsn-menu .nav > li:nth-of-type(12) {
    display: inline-block;
    width: 25%;
    margin-top: 30px;
  }
  .fsn-menu .nav > li:nth-of-type(13) {
    display: inline-block;
    width: 25%;
    margin-top: 30px;
  }
  .mf-flex {
    flex-direction: column;
  }
  .mf-copy {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  .mf-ig {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
  .inner-nav ul li a {
    font-size: 13px;
  }
  body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, .invalid-page .header-space, body[class*="match"]:not(.body-contentpage) .header-space {
    width: 724px;
  }
  body[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"]:not(.body-contentpage) .content-wrapper, .invalid-page .content-wrapper {
    width: 724px;
  }
  .table td, .table th {
    font-size: 14px;
    padding: 4px;
  }
  .php-weatherfg div.phone-weather .weatherImage {
    background: transparent;
  }
  .content-wrapper div.phone-weather .wind_direction .wind_speed1 {
    top: 7px;
  }
  .php-hcaplist .btn-group + .btn-group {
    display: block;
    margin-left: 0px;
    margin-top: 10px;
  }
  .php-roundmgmt .dateperiods {
    width: 56%;
  }
  .php-directory .table td {
    padding: 2px;
    font-size: 12px;
  }
  .php-directory .table td > a[href*="mailto"] {
    word-break: break-all;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 6px 8px;
    letter-spacing: 0px;
    font-weight: 400;
  }
  .php-roundmgmt table td, .php-roundmgmt table th {
    padding: 2px;
    font-size: 11px;
  }
  #global.teebooking .tabs li a {
    font-size: 100%;
    padding: 10px;
  }
  #memteetimes {
    font-size: 14px;
  }
  .body-class-members #globalwrap {
    overflow-x: scroll;
  }
  input[type*="submit"], a.btn, button.btn {
    text-transform: capitalize;
  }
  body[class*="php-"] .nav-section, .body-class-members .nav-section, .body-class-visitorbooking .nav-section, .body-class-getawayletter .nav-section, [class*="body-class-setcoursestatus"] .nav-section, .body-class-opens .nav-section, .body-loginpage .nav-section, body[class*="match"]:not(.body-contentpage) .nav-section, .invalid-page .nav-section {
    width: auto;
  }
}

/* portrait tablet and mobile */

@media (min-width: 0px) and (max-width: 979px) {
  .header-button {
    width: 90px;
    right: 10px;
  }
  .hb-line {
    right: 20px;
    width: 50px;
  }
  .hb-menu {
    display: none;
  }
  .home-comp-cols {
    flex-direction: column;
  }
  .hc-upcoming {
    width: calc(100% - 60px);
    margin: 0px;
  }
  .hc-latest {
    width: calc(100% - 60px);
    margin: 30px 0px 0px;
  }
  .home-slideshow .galleryInner, .home-slideshow .galleryInner img {
    height: auto !important;
  }
  .header-logo {
    width: 120px;
  }
  .navbar-inverse .btn-navbar, .navbar-inverse .btn-navbar:focus  {
    width: 111px;
    padding: 7px 10px;
    margin-top: 0px;
    top: 33px;
    position: absolute;
    z-index: 50;
    right: 0px;
    font-size: 16px;
    background: #fff;
    color: #221E1F;
    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 {
    background: #000;
    color: var(--navactivelink);
  }
  .btn-navbar .club-menu-button {
    font-family: var(--bodyfont);
    font-size: 16px;
    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: #221E1F;
  }
  .navbar .btn-navbar:hover .icon-bar, .navbar .btn-navbar.active .icon-bar {
    background: var(--navactivelink);
  }
  .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 10px;
    top: 0px;
    text-align: left;
  }
  .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: 6px;
  }
  .active .bottom-bar {
    transform: rotate(-45deg);
    top: 7px;
  }
  .navbar .nav > li {
    display: block;
  }
  .body-class-members .navbar-inverse .nav > li {
    float: none;
  }
  .body-class-members .dropdown-menu {
    position: relative;
  }
  .navbar-inverse .nav-collapse .nav > li > a {
    color: var(--navlink);
    font-weight: 400;
  }
  .navbar-inverse .nav-collapse .dropdown-menu a {
    color: var(--dropdownlink);
    font-weight: 400;
  }
  .navbar-inverse .nav-collapse .nav > li.current > a, .navbar-inverse .nav-collapse .dropdown-menu > li.current > a {
    color: var(--navactivelink);
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background: transparent;
    color: var(--navactivelink);
  }
  .nav-collapse .dropdown-menu {
    background:  #000;
  }
  .navbar-inverse .nav-collapse .dropdown-menu a {
    font-weight: 400;
    padding: 9px 15px;
    white-space: break-spaces;
  }
  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 {
    top: 0px;
    margin-left: 0px;
  }
  .fsn-space {
    padding: 35px 20px;
  }
  .header-wrapper {
    min-height: 100px;
    background: rgba(0,0,0,0.6);
  }
  .header-logo {
    width: 83px;
    top: 5px;
    left: 10px;
  }
  .header-button {
    top: 12px;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .page-space {
    padding: 0px 20px;
  }
  .home-slideshow .galleryInner, .home-slideshow .galleryInner img {
    min-height: 350px;
  }
  .hc-upcoming {
    padding: 20px 15px 60px;
    width: calc(100% - 30px);
  }
  .hc-upcoming h3 {
    letter-spacing: 0px;
    text-transform: capitalize;
  }
  .hc-upcoming .upcomingcomp {
    font-size: 14px;
    line-height: 26px;
  }
  .hcu-link {
    top: auto;
    bottom: 11px;
  }
  .hc-latest {
    padding: 20px 15px 60px;
    width: calc(100% - 30px);
  }
  .hc-latest h3 {
    letter-spacing: 0px;
    text-transform: capitalize;
  }
  .hc-latest .recentcompresult {
    font-size: 14px;
    line-height: 26px;
  }
  .hcl-link {
    top: auto;
    bottom: 11px;
  }
  .hn-intro {
    margin-top: 50px;
  }
  .hn-link {
    position: relative;
    top: 0px;
    margin-top: 20px;
  }
  .news-jcarousel {
    width: 460px;
    height: 440px;
  }
  .news-jcarousel .pull-left {
    float: none;
    margin: 0px;
  }
  .news-jcarousel .news-item {
    width: 204px;
  }
  .news-jcarousel .news-item .img-polaroid {
    width: 184px;
    height: 228px;
    margin: 0px 10px;
  }
  .news-jcarousel .news-item .media-body {
    margin: 0px 10px;
    padding: 0px;
  }
  .news-jcarousel .news-item .media-heading {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
  }
  .news-jcarousel .news-item .news-date {
    font-size: 14px;
    line-height: 20px;
  }
  .news-jcarousel .news-item .news-summary {
    font-size: 0px;
    line-height: 20px;
  }
  .news-jcarousel .news-item .news-summary br {
    display: none;
  }
  .news-jcarousel .news-item {
    height: 378px;
  }
  .home-diary-section {
    background-size: cover;
    padding: 30px 0px;
  }
  .home-diary-row {
    flex-direction: column;
  }
  .hdr-main {
    width: 100%;
    margin: 0px;
  }
  .hdr-main .event-jcarousel {
    margin-top: 20px;
    width: 600px;
  }
  .hdr-side {
    width: calc(100% - 30px);
    margin: 20px 0px 0px;
  }
  .logo-row {
    margin: 40px 0px;
  }
  .logo-row .wysiwyg-editable {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .public-footer {
    padding: 40px 0px;
    text-align: center;
  }
  .pf-flex {
    flex-direction: column;
  }
  .pff-contact {
    width: 100%;
    margin: 0px;
  }
  .pff-links {
    width: 100%;
    margin: 20px 0px;
  }
  .pffl-flex {
    flex-direction: column;
  }
  .pff-newsletter {
    width: 100%;
    margin: 0px;
  }
  .public-footer h6 {
    text-transform: initial;
  }
  .mf-flex {
    flex-direction: column;
  }
  .mf-copy {
    width: 100%;
    text-align: center;
    line-height: 28px;
  }
  .mf-copy a {
    display: block;
  }
  .mf-copy .mf-vert {
    display: none;
  }
  .mf-ig {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  .fsn-menu #topmenu .nav > li {
    width: 100%;
    margin: 10px 0px;
    display: block;
  }
  .fsn-menu .dropdown-menu {
    display: none;
    float: none;
  }
  .fsn-menu .open .dropdown-menu {
    display: block;
  }
  .fsn-close {
    width: 80px;
    right: 10px;
  }
  .fsn-cross {
    right: 21px;
  }
  .fsn-close-text {
    display: none;
  }
  .inner-nav ul li {
    display: block;
    margin: 8px 0px;
  }
  .inner-nav ul li a {
    border: 1px solid var(--highlightcolor);
    display: block;
  }
  .inner-nav ul li a::after {
    bottom: 0px;
  }
  .page-url-cgu_competition_results .recentcompresult {
    padding: 12px 10px;
    flex-direction: column;
  }
  .page-url-cgu_competition_results .recentcompresult a {
    width: 100%;
    margin: 0px;
  }
  .page-url-cgu_competition_results .recentcompresult span {
    width: 100%;
    margin: 10px 0px 0px;
  }
  .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;
  }
  .is-two-col, .is-two-col.flip-flex {
    flex-direction: column;
    text-align: center;
  }
  .htc-content {
    width: 100%;
    margin: 0px;
  }
  .flip-flex .htc-content {
    margin: 0px;
  }
  .htc-pic {
    width: 100%;
    margin: 30px 0px 0px;
  }
  .flip-flex .htc-pic {
    margin: 30px 0px 0px;
  }
  .body-public .inner-page-wrapper h1 {
    text-transform: capitalize;
    letter-spacing: 0px;
  }
  body[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"]:not(.body-contentpage) .content-wrapper, .invalid-page .content-wrapper {
    width: auto;
    margin: 0px 10px;
  }
  body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, body[class*="match"]:not(.body-contentpage) .header-space, .invalid-page .header-space {
    width: auto;
    margin: 0px 10px;
  }
  .php-weatherfg div.phone-weather .weatherImage {
    background: transparent;
  }
  .content-wrapper div.phone-weather .wind_direction .wind_speed1 {
    top: 7px;
  }
  [class*="body-class-setcoursestatus"] .content-wrapper a {
    word-break: break-all;
  }
  [class*="body-class-setcoursestatus"] .content-wrapper textarea {
    width: 260px !important;
  }
  .nav-wrapper {
    width: auto;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 6px;
    font-size: 14px;
  }
  .table td, .table th {
    font-size: 12px;
    padding: 2px;
  }
  .php-competition td a.btn {
    font-size: 12px;
    border-radius: 0px;
  }
  .php-hcaplist .btn-group {
    display: block;
    width: 200px;
  }
  .php-hcaplist .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .php-hcaplist .btn-group + .btn-group {
    margin-left: 0px;
  }
  .php-roundmgmt .dateperiods {
    width: 100%;
    float: none;
    text-align: left;
  }
  .php-analysis .pull-left {
    float: none;
  }
  .php-analysis .pull-right {
    float: none;
  }
  .php-analysis .btn-group {
    width: 200px;
    display: block;
  }
  .php-analysis .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .body-class-members .nav-section {
    width: 100%;
  }
  #globalwrap .btn-group .btn:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  #globalwrap .btn-group .btn:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .hcaplist > p:last-child a.btn {
    margin: 6px 0px;
  }
  .php-directory table a[href*="mailto"] {
    word-break: break-all;
  }
  .php-ongoing .global p:nth-of-type(1) {
    width: 250px;
  }
  .php-ongoing a.btn {
    width: 55px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  .php-ongoing p:nth-of-type(1) a.btn:first-child {
    margin-top: 0px;
  }
  #memteetimes td {
    font-size: 12px;
  }
  input[type*="submit"], a.btn, button.btn {
    letter-spacing: 0px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .body-class-members #globalwrap {
    overflow-x: scroll;
  }
  .body-public #globalwrap {
    overflow-x: auto;
  }
}

/* small mobile */

@media (min-width: 0px) and (max-width: 480px) {
  .page-space {
    padding: 0px 25px;
  }
  .news-jcarousel {
    width: 210px;
  }
  .hdr-main .event-jcarousel {
    width: 260px;
  }
  .hdr-main .fancyDiary li {
    width: 250px;
  }
  .header-button {
    width: 70px;
  }
  .hb-line {
    width: 40px;
    right: 15px;
  }
  .page-url-cgu_competition_results .recentcompresult {
    padding: 12px 10px;
    height: 94px;
  }
  .body-contentpage .accordion-title h3 {
    font-size: 16px;
  }
  .page-url-cgu_competition_results .recentcomps {
    height: 1416px;
  }
  .page-url-cgu_competition_results.show-all-comps .recentcomps {
    height: 2832px;
  }
  #login fieldset {
    transform: translateX(0px);
  }
  .nav-tabs > li > a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
  }
}

/* editor */

.php-ckeditor .navbar-inverse .navbar-inner {
  background: #fff;
  padding: 5px 0px;
  color: #000;
}

.php-ckeditor .navbar-inverse .navbar-inner .row .span6 span {
  color: #000 !important;
}

.php-ckeditor .page-space {
  padding: 0px;
}

.php-ckeditor .hcu-link {
  display: none;
}

.php-ckeditor .hcl-link {
  display: none;
}

.php-ckeditor .hn-include {
  margin: 20px 0px;
}

.php-ckeditor .logo-include {
  margin: 20px 0px;
}

/* 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;
}

.body-class-home .added-section-remove, .body-class-home .added-section-move-up, .body-class-home .added-section-move-down {
  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-down {
  display: none;
}

.php-ckeditor.no-extra-nav .extra-nav {
  display: none;
}

/* accordions custom page editor */

.php-ckeditor .added-section-accordion {
  display: inline-block;
  padding: 6px 10px;
  background: #257D86;
  color: #fff;
  margin-top: 10px;
}

.php-ckeditor .added-section-accordion:hover {
  background: #D1802F;
  cursor: pointer;
}

.php-ckeditor .inserted-accordion {
  position: relative;
  padding: 30px 0px;
}

/* end custom page templates */

.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 {
  display: none;
}

@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;
  }
}

/* invalid page */

.invalid-page {
  background: url('/images/resources/cornwallgolfunion/members-bg-default.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.invalid-page .header-button {
  top: 12px;
}

.invalid-page .header-left {
  display: none;
}

.invalid-page .nav-logo {
  display: none;
}

.invalid-page.body-public.body-contentpage .members-footer {
  display: block;
}

@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 .home-slideshow [class*="-slideshow"] .nivo-caption {
  bottom: 80px;
  text-align: center;
  background: transparent;
  opacity: 1;
  margin: 0px auto;
}

.content-wrapper .home-slideshow [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: var(--headingcolor);
  color: #fff;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
}

.inner-page-wrapper form input[type*="submit"]:hover {
  background: var(--buttonbg);
  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: var(--navactivelink);
  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: 2px;
    font-size: 12px;
  }
  .inner-intro table td, .members-page table td, .inner-full-added table td, .is-two-col table td, .ie-col table td {
    padding: 2px;
    font-size: 12px;
  }
  .accordion-content {
    overflow-x: auto;
  }
}

[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: block;
}

.home-slideshow .nivo-directionNav a.nivo-prevNav {
  background: url('/images/resources/cornwallgolfunion/slideshow-prev-arrow.png');
  width: 39px;
  height: 73px;
  left: 50px;
  z-index: 31;
}

.home-slideshow .nivo-directionNav a.nivo-nextNav {
  background: url('/images/resources/cornwallgolfunion/slideshow-next-arrow.png');
  background-position: 0px;
  width: 39px;
  height: 73px;
  right: 50px;
  z-index: 32;
}

.page-url-contact .inner-intro.start-block .two-equal-added.flex-row {
  align-items: start;
}

.php-ckeditor .included-carousel-block {
  height: auto;
}

.body-public .home-slideshow::before {
  content: '';
  height: 200px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%);
  z-index: 10;
}

@media (min-width: 0px) and (max-width: 979px) {
  .home-slideshow .nivo-directionNav a.nivo-prevNav {
    left: 20px;
    width: 16px;
    height: 34px;
    background: url('/images/resources/cornwallgolfunion/mobile-slideshow-prev-arrow.png');
  }
  .home-slideshow .nivo-directionNav a.nivo-nextNav {
    right: 20px;
    width: 16px;
    height: 34px;
    background: url('/images/resources/cornwallgolfunion/mobile-slideshow-next-arrow.png');
  }
}

/* slideshow titles */

.content-wrapper [class*="-slideshow"] .nivo-caption {
  bottom: 100px;
  left: 200px;
  text-align: left;
  background: transparent;
  opacity: 1;
  margin: 0px auto;
  width: 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: transparent;
  text-shadow: 1px 1px #000;
}

.content-wrapper [class*="slideshow"] .nivo-caption p {
  color: white;
  text-shadow: 1px 1px #000;
}

@media (min-width: 1600px) and (max-width: 1799px) {
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    left: 150px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    left: 100px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    left: 50px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    left: 25px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    left: 20px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    bottom: 50px;
    left: 20px;
  }
  #globalwrap [class*="-slideshow"] .nivo-caption h4 {
    font-size: 16px;
    line-height: 24px;
  }
}

.no-slidey-page .header-logo {
  top: 5px;
  width: 90px;
}

.no-slidey-page .header-wrapper {
  background: var(--headerbg);
  min-height: 100px;
}

.no-slidey-page .header-button {
  top: 12px;
}

.no-slideshow .inner-intro {
  padding-top: 160px;
}

.content-wrapper #globalwrap .adminWrapper table.admin thead th, .content-wrapper #globalwrap .adminWrapper table.admin thead td {
  color: #fff;
}

.body-public .inner-page-wrapper h1 {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 2px;
}

.body-public .inner-page-wrapper h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.body-public .inner-page-wrapper h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.body-public .inner-page-wrapper .accordion-title h3 {
  text-transform: initial;
  letter-spacing: 0px;
}

.body-class-members .mf-member-hide {
  display: none;
}

.body-class-members .mf-copy .mf-vert:first-of-type{
  display: none;
}

@media (min-width: 1200px) {
  .body-class-members.php-login .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 15px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  body[class*="php-"] .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, body[class*="match"]:not(.body-contentpage) .nav-section {
    margin-left: 90px;
  }
  .body-class-members .header-wrapper .nav-section {
    top: 30px;
  }
}

.body-class-members .navbar-inverse .nav > li.nav-menu-links {
  display: none;
}

.inner-page-wrapper table.diary-year tr th:last-of-type {
  display: none;
}

.page-url-news .news-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.page-url-news .media > .pull-left {
  float: none;
  margin: 0px;
}

.page-url-news .media img.img-polaroid {
  padding: 0px;
  border: none;
  box-shadow: none;
  height: 320px;
  width: 100%;
  object-fit: cover;
}

.page-url-news .media .media-body {
  margin-top: 15px;
}

.page-url-news .media .read-more {
  background: var(--headingcolor);
  color: var(--navactivelink);
  display: inline-block;
  padding: 5px 25px;
  font-weight: 400;
  text-transform: initial;
  font-size: 16px;
  letter-spacing: 0.7px;
  border-radius: 8px;
  margin-top: 10px;
}

.page-url-news .media .read-more:hover, .page-url-news .media .read-more:focus {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.ie-col .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.ie-col .nivo-controlNav-Wrapper {
  display: none;
}

.ie-col .nivo-directionNav {
  display: block;
}

.ie-col .nivo-directionNav a.nivo-prevNav {
  background: url('/images/resources/cornwallgolfunion/mobile-slideshow-prev-arrow.png');
  background-position: 0px;
  width: 16px;
  height: 34px;
  left: 20px;
}

.ie-col .nivo-directionNav a.nivo-nextNav {
  background: url('/images/resources/cornwallgolfunion/mobile-slideshow-next-arrow.png');
  background-position: 0px;
  width: 16px;
  height: 34px;
  right: 20px;
}

.ie-col .nivo-caption {
  opacity: 1;
  background: transparent;
}

.ie-col .nivo-caption h4 {
  margin: 0px 0px 20px;
  font-size: 20px;
  line-height: 30px;
  text-shadow: 1px 1px #000;
  color: #fff;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .page-url-news .media img.img-polaroid {
    height: 240px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .page-url-news .media img.img-polaroid {
    height: 190px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .page-url-news .news-wrapper {
    grid-template-columns: 1fr;
  }
  .page-url-news .media img.img-polaroid {
    height: 260px;
    max-width: 300px;
    margin: 0px auto;
  }
}

.custom-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.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: 260px;
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.portrait-image .cci-pic img {
  max-height: 500px;
  height: 500px;
}

.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.no-extra-nav .extra-nav, .php-ckeditor.no-carousel-nav .carousel-nav {
  display: none;
}

.php-ckeditor .custom-carousel-item {
  position: relative;
  padding: 30px 0px;
  margin: 30px 20px;
}

.php-ckeditor .additional-carousel-items {
  display: block;
}

.inner-page-wrapper table td.date {
  float: none;
}

.inner-page-wrapper .global > .global > table.fixtures tr > td:last-of-type {
  display: none;
}

.inner-page-wrapper .global > .global > table.fixtures td.hc a {
  background: var(--headingcolor);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
  padding: 2px 8px;
  width: 80px;
}

@media (min-width: 768px) {
  .inner-page-wrapper .global > .global > table.fixtures tr > td {
    width: 25%;
  }
}

.inner-page-wrapper table p {
  margin: 0px;
}

.inner-page-wrapper table h5 {
  margin: 0px;
}

.inner-page-wrapper table h5 a {
  margin: 0px;
  padding: 5px 15px;
}

.page-url-meet_the_board .two-equal-added.flex-row, .page-url-mens_summer_team_competitions .two-equal-added.flex-row {
  align-items: start;
}

.page-url-meet_the_board.body-public .inner-page-wrapper h2, .page-url-mens_summer_team_competitions.body-public .inner-page-wrapper h2 {
  text-transform: initial;
  letter-spacing: 0px;
}

.page-url-affiliated_clubs .three-equal-added .ie-col p {
  font-size: 0px;
}

.page-url-affiliated_clubs .three-equal-added .ie-col p a {
  font-size: 16px;
}

.home-slideshow h5 {
  margin: 0px;
}

.home-slideshow h5 a {
  background: rgba(0,0,0,0.5);
}

.hs-tl {
  position: absolute;
  z-index: 1100;
  top: 30px;
  left: 30px;
}

.show-fsn .hs-tl {
  z-index: 500;
}

.hs-bl {
  position: absolute;
  z-index: 30;
  bottom: 30px;
  left: 30px;
}

.hs-br {
  position: absolute;
  z-index: 29;
  bottom: 30px;
  right: 30px;
}

.hs-br a {
  color: #fff;
  font-size: 26px;
}

.hs-br a:nth-of-type(2) {
  margin: 0px 8px;
}

.hs-br a:hover, .hs-br a:focus {
  text-decoration: none;
  opacity: 0.6;
}

.hs-br img {
  width: 22px;
  position: relative;
  top: -2px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .hs-bl {
    bottom: 10px;
    left: 10px;
  }
  .hs-tl {
    top: 20px;
    left: 10px;
  }
  .hs-br {
    bottom: 10px;
    right: 10px;
  }
}

@media (min-width: 0px) and (max-width: 480px) {
  .home-slideshow h5 a {
    font-size: 12px;
    letter-spacing: 0px;
    padding: 5px 10px;
  }
}

.home-page-wrapper h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-sponsors {
  margin-top: 60px;
}

.home-affiliated {
  margin-top: 60px;
}

.sc-holder {
  width: 100%;
  position: relative;
  height: 200px;
  overflow: hidden;
}

.sc-wrapper {
  position: absolute;
  width: 10000em;
  list-style: none;
  margin: 0px;
  padding: 0;
  display: flex;
  align-items: center;
}

.sc-item {
  width: 350px;
  float: left;
  text-align: center;
  margin-right: 30px;
}

.ac-holder {
  width: 100%;
  position: relative;
  height: 206px;
  overflow: hidden;
}

.ac-wrapper {
  position: absolute;
  width: 10000em;
  list-style: none;
  margin: 0px;
  padding: 0;
  display: flex;
  align-items: center;
}

.ac-item {
  width: 350px;
  float: left;
  text-align: center;
  margin-right: 30px;
}

@media (min-width: 980px) and (max-width: 1199px) {
   .sc-holder, .ac-holder {
    width: 930px;
    margin: 0px auto;
  }
  .sc-item, .ac-item {
    width: 200px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
   .sc-holder, .ac-holder {
    width: 724px;
    margin: 0px auto;
  }
  .sc-item, .ac-item {
    width: 155px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
   .sc-holder, .ac-holder {
    width: 480px;
    margin: 0px auto;
  }
  .sc-item, .ac-item {
    width: 220px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
   .sc-holder, .ac-holder {
    width: 480px;
    margin: 0px auto;
  }
  .sc-item, .ac-item {
    width: 220px;
  }
}

@media (min-width: 0px) and (max-width: 480px) {
  .sc-holder, .ac-holder {
    width: 280px;
    margin: 0px auto;
  }
  .sc-item, .ac-item {
    width: 280px;
  }
}

.page-url-who_we_are .two-equal-added.flex-row {
  align-items: start;
}

.page-url-who_we_are .two-equal-added.flex-row ul li {
  margin-left: 25px;
}

.page-url-who_we_are .two-equal-added.flex-row ul li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 16px;
  left: -25px;
}

.five-equal-added.flex-row {
  display: flex;
  gap: 20px;
}

.five-equal-added.flex-row > .ie-col {
  flex: 1 1 0;
  text-align: center;
  background: #E9EA31;
  color: #000;
  border-radius: 6px;
  text-align: center;
}

.five-equal-added.flex-row > .ie-col > .wysiwyg-editable {
  height: 180px;
  line-height: 180px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 979px) {
  .five-equal-added.flex-row > .ie-col > .wysiwyg-editable {
    text-transform: capitalize;
    font-size: 16px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .five-equal-added.flex-row {
    flex-direction: column;
  }
  .five-equal-added.flex-row > .ie-col > .wysiwyg-editable {
    line-height: 80px;
    height: 80px;
  }
  .page-url-who_we_are .two-equal-added.flex-row ul li {
    margin-left: 0px;
  }
  .page-url-who_we_are .two-equal-added.flex-row ul li::before {
    position: relative;
    left: 0px;
  }
  .inner-full-added img {
    max-width: 450px;
    width: 100%;
    margin: 0px auto;
  }
}

.home-ticker {
  background: #363636;
  padding: 10px 0px;
}

.home-ticker p {
  margin: 0px;
}

.home-ticker div.marquee.nostyle .tickercontainer .mask {
  top: 3px;
}

.home-ticker ul.newsticker {
  font-size: 16px;
  font-family: var(--bodyfont);
  font-weight: 400;
  background: #363636;
  width: 1000em !important;
}

.home-ticker ul.newsticker li {
  background: #363636;
  color: #fff;
  padding-top: 5px;
}

div#global .home-ticker div.marquee.nostyle div.tickercontainer, .home-ticker div.marquee.nostyle div.tickercontainer {
  background: #363636;
  border: none;
}

.home-ticker br {
  display: none;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .home-ticker {
    width: 100%;
  }
  .home-ticker #marquee {
    width: 1200px !important;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .home-ticker {
    width: calc(100% - 20px);
    padding: 10px;
  }
  .home-ticker #marquee {
    width: 980px !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .home-ticker #marquee {
    width: 768px !important;
  }
}

@media (min-width: 0px) and (max-width: 479px) {
  .home-ticker #marquee {
    width: 480px !important;
  }
}

.hs-title {
  position: absolute;
  z-index: 35;
  left: 10px;
  right: 10px;
  text-align: center;
  bottom: 250px;
  text-shadow: 1px 1px #000;
}

.hs-title h1 {
  color: #fff;
  margin: 0px;
  font-weight: 600;
}

.php-ckeditor .hs-title {
  position: relative;
  bottom: 0px;
  background: rgba(0,0,0,0.6);
  margin: 15px 0px;
}

.php-ckeditor .hs-tl {
  position: relative;
  top: 0px;
  left: 0px;
  margin: 10px 0px;
}

.php-ckeditor .hs-bl {
  position: relative;
  bottom: 0px;
  left: 0px;
  margin: 10px 0px;
}

.php-ckeditor .hs-br {
  position: relative;
  bottom: 0px;
  right: 0px;
  margin: 10px 0px;
}

.home-slideshow > .wysiwyg-editable > br {
  display: none;
}

.pf-title {
  display: flex;
  margin-bottom: 30px;
}

.pf-title > div {
  flex: 1 1 0;
  text-align: center;
}

.pft-col:first-of-type {
  margin-right: 20px;
}

.pft-col:last-of-type {
  margin-left: 20px;
}

.pf-flex > div {
  flex: 1 1 0;
}

.pff-buttons a {
  width: 150px;
  text-align: center;
}

.pff-contact-one {
  margin-right: 15px;
}

.pff-contact-two {
  margin: 0px 15px;
}

.pff-buttons {
  margin: 0px 15px;
}

.pff-newsletter {
  margin-left: 15px;
}

@media (min-width: 1200px) and (max-width: 1799px) {
  .public-footer h6 {
    text-transform: initial;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .pff-contact-two {
    font-size: 15px;
  }
  .pff-newsletter input[type*="text"] {
    padding-right: 6px;
    width: calc(100% - 14px);
  }
  .pff-newsletter input[type*="submit"] {
    position: relative;
    bottom: 0px;
    left: 0px;
  }
  .pff-newsletter label {
    bottom: 61px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .pff-contact-two, .pff-contact-one {
    font-size: 13px;
  }
  .pff-newsletter input[type*="text"] {
    padding-right: 6px;
    width: calc(100% - 14px);
  }
  .pff-newsletter input[type*="submit"] {
    position: relative;
    bottom: 0px;
    left: 0px;
  }
  .pff-newsletter label {
    bottom: 61px;
  }
  .public-footer .pff-newsletter h6 {
    text-transform: initial;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .pft-col:last-of-type {
    position: absolute;
    top: 245px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
  }
  .pf-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 20px;
  }
  .pff-contact-one {
    margin: 0px;
  }
  .pff-contact-two {
    margin: 0px;
  }
  .pff-buttons {
    margin: 0px;
  }
  .pff-newsletter {
    width: 100%;
    margin: 0px;
  }
  .pf-title {
    position: relative;
  }
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    bottom: 20px;
    left: 20px;
  }
  .hs-title {
    bottom: 100px;
  }
  .body-public .inner-page-wrapper h1 {
    font-size: 26px;
    line-height: 36px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .pf-flex {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 20px;
  }
  .pf-title {
    position: relative;
  }
  .pft-col:last-of-type {
    position: absolute;
    top: 455px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
  }
  .pff-buttons {
    margin: 60px 0px 0px;
  }
  .pff-newsletter {
    margin: 0px;
  }
  .content-wrapper [class*="-slideshow"] .nivo-caption {
    bottom: 20px;
    left: 20px;
  }
  .body-class-home .content-wrapper .home-page-wrapper [class*="-slideshow"] .nivo-caption {
    bottom: 50px;
  }
  .hs-title {
    bottom: 100px;
  }
  .body-public .inner-page-wrapper h1 {
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 26px;
    line-height: 36px;
  }
  .hc-upcoming h3, .hc-latest h3 {
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 28px;
  }
}

@media (min-width: 0px) and (max-width: 480px) {
  .pff-contact-one, .pff-contact-two {
    font-size: 13px;
  }
}

.home-ticker {
  overflow-x: hidden;
}

.php-ckeditor .sc-wrapper, .php-ckeditor .ac-wrapper {
  position: relative;
  width: 100%;
  display: block;
}

.php-ckeditor .sc-holder, .php-ckeditor .ac-holder {
  height: auto;
}

.all-colour {
  color: #275317;
}

.men-colour {
  color: #FF0000;
}

.women-colour {
  color: #002060;
}

.junior-colour {
  color: #FF9900;
}

.inner-full-added .global > .global > h3 {
  display: none;
}

.inner-full-added .global > .global > p {
  display: none;
}

@media (min-width: 0px) and (max-width: 767px) {
  .content-wrapper img[width*="16"] {
    width: 16px;
  }
  .ie-col ul li {
    margin-left: 0px;
  }
  .ie-col ul li::before {
    position: relative;
    top: -3px;
    left: 0px;
  }
  .body-public a[name] {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
  }
}

.body-class-members.body-contentpage .home-diary-section, .body-class-members.body-contentpage .logo-include {
  display: none;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .content-wrapper .home-page-wrapper [class*="-slideshow"] .nivo-caption {
    bottom: 100px;
  }
  .content-wrapper .ie-col .nivo-directionNav {
    display: none !important;
  }
  .public-footer {
    padding: 40px 0px;
  }
}

/* end anton styles */