/* anton styles */

/* fonts */

.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.pt-serif-regular {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.pt-serif-bold {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}

.pt-serif-regular-italic {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.pt-serif-bold-italic {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: italic;
}

/* variables */

:root {
  --bodyfont: 'Montserrat', sans-serif;
  --headingfont: 'PT Serif', serif;
  --headingcolor: #14294a;
  --headingcolor2: #14294a;
  --linkcolor: #8048d8;
  --bodycolor: #14294a;
  --headerbg: #2e2242;
  --footerbg: #2e2242;
  --navlink: #bbd3d5;
  --navactivelink: #fff;
  --navhoverlink: #F09BA0;
  --dropdownbg: #01295f;
  --dropdownlink: #bbd3d5;
  --dropdownactivelink: #fff;
  --dropdownhoverlink: #F09BA0;
  --buttonbg: #fffc31;
  --scorecardyellow: #fc0;
  --scorecardred: #c80000;
  --border: #204033;
}

.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 {
  display: none;
}

/* general styles */

body {
  font-size: 16px;
  font-family: var(--bodyfont);
  color: var(--bodycolor);
  font-weight: 400;
}

h1 {
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  color: var(--headingcolor);
  margin-bottom: 30px;
  font-family: var(--headingfont);
}

h2 {
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h3 {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  color: var(--headingcolor2);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--headingcolor);
  margin-bottom: 20px;
  font-family: var(--headingfont);
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--headingcolor2);
  margin-bottom: 20px;
}

h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--headingcolor);
  font-family: var(--headingfont);
}

h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: var(--headingcolor2);
  color: #fff;
  display: inline-block;
  padding: 12px 30px;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0px;
  border-radius: 10px;
  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 {
  background: var(--headingcolor);
  color: #fff;
  text-decoration: none;
}

a {
  color: var(--linkcolor);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

a:hover, a:focus {
  color: var(--linkcolor);
  text-decoration: underline;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* header styles */

.header-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 70px;
  z-index: 1001;
}

.header-logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.header-logo img {
  width: 30px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.header-logo:hover img {
  transform: scale(1.1);
}

/* nav */

.navbar {
  margin: 0px;
}

#hamburger-icon {
  position: absolute;
  top: 17px;
  right: 30px;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

#hamburger-icon:hover {
  transform: scale(1.1);
}

#hamburger-icon .menu-open {
  font-size: 11px;
  line-height: 10px;
  font-family: var(--bodyfont);
  position: absolute;
  top: 0px;
  left: 0px;
  color: #000;
}

#hamburger-icon .line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

#hamburger-icon .line-1 {
  top: 18px;
}

#hamburger-icon .line-2 {
  top: 26px;
}

#hamburger-icon .line-3 {
  top: 35px;
}

#myNavbar {
  position: absolute;
  top: 0px;
  width: 100%;
  left: 0px;
  min-height: 70px;
  background: var(--headerbg);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.show-menu #myNavbar {
  top: 0px;
}

.navbar-inverse .navbar-inner {
  background: transparent;
  border: none;
  box-shadow: none;
}

.nav-wrapper {
  width: 1120px;
  margin: 0px auto;
  text-align: center;
}

.nav-logo {
  width: 50px;
  position: absolute;
  top: 10px;
  z-index: 20;
}

.nav-logo:hover {
  opacity: 0.5;
}

.navbar .nav {
  float: none;
  margin: 15px 0px;
}

.navbar .nav > li {
  float: none;
  display: inline-block;
}

.navbar .nav > li > a {
  color: var(--navlink);
  text-shadow: none;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 2px;
}

.navbar .nav > li > a:hover, .navbar .nav > li > a:focus {
  color: var(--navhoverlink);
}

.navbar .nav > li.current > a, .navbar .nav > li.active > 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;
  box-shadow: none;
}

.dropdown-menu {
  margin-top: 15px;
  border-radius: 0px;
  border: none;
  box-shadow: none;
  background: var(--headerbg);
  text-align: left;
}

.navbar .nav > li > .dropdown-menu::before, .navbar .nav > li > .dropdown-menu::after {
  display: none;
}

.dropdown-menu > li > a {
  color: var(--dropdownlink);
  padding: 6px 15px;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: var(--dropdownhoverlink);
  background: transparent;
}

.dropdown-menu > li.current > a {
  color: var(--dropdownactivelink);
  background: transparent;
}

.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
  width: 30px;
  height: 30px;
  z-index: 19;
}

@media (min-width: 0px) and (max-width: 979px) {
  .nav-close {
    display: block;
  }
}

.nav-close:hover {
  cursor: pointer;
}

.nav-close .cross {
  display: inline-block;
  height: 3px;
  background: var(--navlink);
  width: 19px;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 14px;
  margin: 0px auto;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.nav-close:hover .cross {
  background: var(--navhoverlink);
}

.nav-close .cross-1 {
  transform: rotate(45deg);
}

.nav-close .cross-2 {
  transform: rotate(-45deg);
}

/* footer */

.footer {
  background: var(--footerbg);
  padding: 50px 0px 40px;
  color: var(--navlink);
}

.top-footer {
  padding-bottom: 25px;
}

.footer-space {
  width: 1120px;
  margin: 0px auto;
}

.tf-flex {
  display: flex;
}

.tff-logo {
  width: 18%;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.tff-logo:hover {
  opacity: 0.5;
}

.tff-logo img {
  max-width: 150px;
  width: 100%;
}

.tff-title {
  width: 48%;
  margin: 0px 10px;
}

.tff-title p {
  font-size: 40px;
  line-height: 48px;
  font-family: var(--headingfont);
}

.tff-contact {
  width: 33%;
}

.tffc-buttons a {
  padding: 10px 40px;
  text-transform: uppercase;
  border: 1px solid var(--navlink);
  color: var(--navlink);
  display: block;
  text-align: center;
  border-radius: 25px;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 500
}

.tffc-buttons a:hover, .tffc-buttons a:focus {
  background: var(--navlink);
  color: var(--headingcolor);
  text-decoration: none;
}

.tffc-info {
  font-size: 14px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 40px;
}

.tffc-info a {
  color: var(--navlink);
}

.bottom-footer {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bottom-footer a {
  color: var(--navlink);
}

.bf-flex {
  display: flex;
}

.bff-copy {
  width: 75%;
}

.bff-ig {
  width: 25%;
  text-align: right;
}

.bff-ig img {
  width: 120px;
}

/* page */

body {
  background: url('/images/resources/worlington/members-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.content-wrapper {
  width: 1120px;
  margin: 0px auto;
}

#globalwrap {
  margin-top: 140px;
  margin-bottom: 120px;
  border: 2px solid var(--headingcolor);
  padding: 20px;
  background: rgba(255,255,255,0.9);
}

.body-class-members #container #globalwrap {
  margin-top: 140px;
  margin-bottom: 120px;
  border: 2px solid var(--headingcolor);
  padding: 20px;
  background: rgba(255,255,255,0.9);
}

/* 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: transparent;
  color: var(--headingcolor);
  padding: 6px 20px;
  border-radius: 25px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  box-shadow: none;
  border: 1px solid var(--headingcolor);
  font-family: var(--navfont);
  margin: 2px;
   transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

input[type*="submit"]:hover, a.btn:hover, button.btn:hover, input[type*="submit"]:focus, a.btn:focus, button.btn:focus {
  background: var(--navhoverlink);
  color: var(--headingcolor);
  border-color: var(--navhoverlink);
}

/* no pin page */

.php-login .nav > li.nav-menu-login\.php {
  display: none;
}

.php-login .nav > li.nav-menu-competition\.php, .php-login .nav > li.nav-menu-competition2\.php {
  display: none;
}

/* members */

thead {
  background: var(--headingcolor);
  color: #fff;
  font-weight: 400;
}

.body-class-members .content-wrapper thead a {
  color: #fff;
  text-decoration: underline;
}

.table th {
  font-weight: 400;
}

.php-index.body-class-members #container #globalwrap {
  background: transparent;
  border: none;
  padding: 0px;
}

.php-index #leftcontent > div, .php-index #rightcontent > div {
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--headingcolor);
  position: relative;
}

.php-index #globalwrap .weatherMini {
  position: absolute;
  top: 2px;
  right: 2px;
}

.php-index #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-index #globalwrap .weatherImage img {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-weatherfg #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-weatherfg #globalwrap .weatherImage img, .php-weatherfg #globalwrap .weatherImage img.image-night {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-index #globalwrap .weatherImage i {
  font-size: 28px;
}

.php-analysis .content-wrapper .pull-left, .php-courseanalysis .content-wrapper .pull-left {
  float: none;
}

.php-analysis .content-wrapper .pull-right, .php-courseanalysis .content-wrapper .pull-right {
  float: none;
}

.content-wrapper .well {
  background: transparent;
  padding: 10px;
  border: none;
  box-shadow: none;
}

.body-class-members .content-wrapper {
  line-height: 28px;
}

.body-class-members .nav-menu-information .dropdown-menu .nav-menu-information {
  display: none;
}

/*.body-class-members .content-wrapper a {
  text-decoration: underline;
}*/

.body-class-members .content-wrapper a.btn {
  text-decoration: none;
  border-radius: 25px;
}

.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.body-contentpage .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.body-class-members.body-contentpage .content-wrapper .container {
  width: auto;
}

.php-eclectic table thead.tableFloatingHeaderOriginal {
  background-color: var(--headingcolor) !important;
}

.php-boardcomps a.btn {
  width: 250px;
  display: block;
  font-size: 14px;
  margin: 5px 0px;
}

.php-boardcomps a.btn.pull-right {
  float: none;
  margin-top: -27px;
}

#memteetimes thead th {
  color: #fff;
}

.php-directory .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .php-friends .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
  font-size: 16px;
}

.php-diary .diary-nav-right a {
  transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -webkit-transition: all 0ms ease-in-out;
}

.php-log #globalwrap {
  overflow-x: scroll;
}

.php-log #globalwrap table tr td:nth-child(3) {
  word-break: break-word;
}

.php-weatherfg .table td {
  border: none;
}

@media (min-width: 0px) and (max-width: 800px) {
  .php-competition2 table.comps-list-table .comp-ical-td {
    right: -10px;
  }
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .content-wrapper, .footer-space, .nav-wrapper {
    width: 940px;
  }
  .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;
  }
  .table td, .table th, table td, table th {
    padding: 6px;
    font-size: 14px;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 8px 12px;
  }
  .navbar .nav > li > a {
    letter-spacing: 0px;
    text-transform: capitalize;
  }
}

/* portrait tablet */

@media (min-width: 768px) and (max-width: 979px) {
  .content-wrapper, .footer-space, .nav-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;
  }
}

/* portrait tablet and mobile */

@media (min-width: 0px) and (max-width: 979px) {
  #myNavbar {
    min-height: 100vh;
    top: -100vh;
    overflow-y: scroll;
  }
  .nav-logo {
    position: relative;
    margin: 50px 0px 20px;
    width: 100px;
  }
  .nav-wrapper {
    text-align: left;
  }
  .navbar .nav > li {
    display: block;
  }
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    font-weight: 400;
    color: var(--navlink);
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus {
    color: var(--navhoverlink);
    background: transparent;
  }
  .navbar-inverse .nav-collapse .nav > li.current > a, .navbar-inverse .nav-collapse .nav > li.active > a {
    color: var(--navactivelink);
  }
  .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    color: var(--navhoverlink);
    background: transparent;
  }
  .navbar-inverse .nav-collapse .dropdown-menu > li.current > a {
    color: var(--navactivelink);
  }
  .navbar-inverse .navbar-inner {
    height: calc(100vh - 100px);
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .content-wrapper, .footer-space {
    width: auto;
    margin: 0px 20px;
  }
  .tf-flex {
    flex-direction: column;
  }
  .tff-logo {
    width: 100%;
  }
  .tff-logo img {
    max-width: 100px;
  }
  .tff-title {
    width: 100%;
    margin: 30px 0px;
  }
  .tff-title p {
    font-size: 30px;
    line-height: 36px;
  }
  .tff-contact {
    width: 100%;
  }
  .bottom-footer {
    line-height: 26px;
  }
  .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;
    margin: 0px;
  }
  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%;
  }
  .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) {
  #login fieldset {
    transform: translateX(0px);
  }
  .nav-tabs > li > a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
  }
}

/* editor */

.php-ckeditor .wysiwyg-editable {
  border: 2px dashed #000;
}

.php-ckeditor .navbar-inverse .navbar-inner {
  background: #000;
}

.php-ckeditor .navbar-inverse .navbar-inner a.btn {
  padding: 6px 12px;
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.php-ckeditor .navbar-inverse .navbar-inner a.btn.active, .php-ckeditor .navbar-inverse .navbar-inner a.btn:hover {
  background: var(--navhoverlink);
}

/* sticky */

@media (min-width: 768px) {
  html {
    position: relative;
    min-height: 100%;
  }
  body[class*="php-"], .body-class-members, .body-class-visitorbooking, .body-class-getawayletter, [class*="body-class-setcoursestatus"], .body-class-opens, .body-loginpage, body[class*="match"], .invalid-page {
   margin-bottom: 520px; 
  }
  body[class*="php-"] .footer, .body-class-members .footer, .body-class-visitorbooking .footer, .body-class-getawayletter .footer, [class*="body-class-setcoursestatus"] .footer, .body-class-opens .footer, .body-loginpage .footer, body[class*="match"] .footer, .invalid-page .footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 347px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .bf-flex {
    flex-direction: column;
  }
  .bff-copy {
    width: 100%;
  }
  .bff-ig {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
}

/* end anton styles */