/* anton styles */

/* fonts */

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* variables */

:root {
  --bodyfont: 'Arial', sans-serif;
  --headingfont: 'Roboto', sans-serif;
  --headingcolor: #fff;
  --headingcolor2: #fff;
  --highlightcolor: #FDBC9B;
  --buttonhighlight: #C79D17;
  --bodycolor: #fff;
  --headerbg: #4e5c6a;
  --footerbg: #4e5c6a;
  --navlink: #fff;
  --navactivelink: #000066;
  --dropdownbg: #36404a;
  --dropdownlink: #fff;
  --dropdownlinkactive: #000066;
  --scorecardwhite: #ddd;
  --scorecardyellow: #fc0;
  --scorecardred: #f00;
  --scorecardblue: #1D3A8A;
}

.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);
  overflow-x: hidden;
  background: url('/images/resources/childwall/childwall-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

h1 {
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  color: var(--headingcolor);
  margin-bottom: 30px;
  font-family: var(--bodyfont);
}

h2 {
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--bodyfont);
}

h3 {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  color: var(--headingcolor2);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--bodyfont);
}

h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--headingcolor);
  margin-bottom: 20px;
  font-family: var(--bodyfont);
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--headingcolor2);
  margin-bottom: 20px;
}

h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--headingcolor);
  font-family: var(--bodyfont);
}

h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: transparent;
  color: #1F1554;
  display: inline-block;
  padding: 10px 40px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-top: 10px;
  border: 1px solid #1F1554;
  position: relative;
}

.content-wrapper h5 a:hover, .content-wrapper h5 a:focus, .gallery-image .ss-controls a:hover, .gallery-image .ss-controls a:focus, .gallery-image .nav-controls a:hover, .gallery-image .nav-controls a:focus {
  background: #1F1554;
  color: var(--buttonhighlight);
  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 */

.header-wrapper {
  background: var(--headerbg);
  border-bottom: 1px dotted #fff;
}

/* navbar */

.navbar {
  margin-bottom: 0px;
}

.navbar-inverse .navbar-inner {
  background: transparent;
  border: none;
  min-height: 37px;
  box-shadow: none;
}

.navbar .nav {
  float: none;
  text-align: center;
}

.navbar .nav > li {
  float: none;
  display: inline-block;
}

.navbar .nav > li > a {
  text-transform: uppercase;
  color: var(--navlink);
  font-family: var(--headingfont);
  font-size: 14px;
  font-weight: 700;
  text-shadow: none;
  line-height: 17px;
}

.navbar .nav > li.current > a, .navbar .nav > li > a:hover, .navbar .nav > li > a:focus {
  background: #fff;
  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: #fff;
  color: var(--navactivelink);
  box-shadow: none;
}

.navbar .nav > li > .dropdown-menu::before, .navbar .nav > li > .dropdown-menu::after {
  display: none;
}

.dropdown-menu {
  margin-top: 0px;
  border: none;
  background: var(--dropdownbg);
  text-align: left;
}

.dropdown-menu > li > a {
  color: var(--navlink);
  padding: 9px 15px;
  font-family: var(--headingfont);
}

.dropdown-menu > li.current > a, .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  background: #fff;
  color: var(--navactivelink);
}

/* footer */

.footer-wrapper {
  background: var(--footerbg);
  color: #DCE3EA;
  text-align: center;
  font-family: var(--headingfont);
  font-size: 11px;
}

.footer-wrapper .container {
  border-top: 1px dotted #fff;
  padding-top: 24px;
}

.fs-face {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  background: #0866ff;
  color: #fff;
  margin-right: 10px;
}

.fs-twit {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  background: #3aceff;
  color: #fff;
  margin-right: 0px;
}

.fs-twit img {
  width: 13px;
  position: relative;
  top: -1px;
}

.footer-ig img {
  width: 100px;
}

.footer-wrapper p {
  margin-bottom: 20px;
}

.footer-wrapper a {
  color: #fff;
  text-decoration: underline;
  margin-right: 6px;
}

#globalwrap {
  margin-top: 90px;
  margin-bottom: 60px;
  border: 2px solid var(--bodycolor);
  padding: 20px;
  background: var(--headerbg);
}

.content-wrapper {
  width: 1170px;
  margin: 0px auto;
}

/* sticky footer */

@media (min-width: 768px) {
  html {
    position: relative;
    min-height: 100%;
  }
  body[class*="php-"], .body-class-members, .body-class-visitorbooking, .body-class-getawayletter, [class*="body-class-setcoursestatus"], .body-class-opens, .body-loginpage, body[class*="match"], .invalid-page {
   margin-bottom: 259px; 
  }
  body[class*="php-"] .footer-wrapper, .body-class-members .footer-wrapper, .body-class-visitorbooking .footer-wrapper, .body-class-getawayletter .footer-wrapper, [class*="body-class-setcoursestatus"] .footer-wrapper, .body-class-opens .footer-wrapper, .body-loginpage .footer-wrapper, body[class*="match"] .footer-wrapper, .invalid-page .footer-wrapper {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 159px;
  }
}

/*@media (min-width: 0px) and (max-width: 767px) {
  html {
    position: relative;
    min-height: 100%;
  }
  body[class*="php-"], .body-class-members, .body-class-visitorbooking, .body-class-getawayletter, [class*="body-class-setcoursestatus"], .body-class-opens, .body-loginpage, body[class*="match"], .invalid-page {
   margin-bottom: 300px; 
  }
  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: 194px;
  }
}*/

/* 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(--highlightcolor);
  color: #000;
  padding: 6px 20px;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  margin: 2px;
   transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

input[type*="submit"]:hover, a.btn:hover, button.btn:hover, input[type*="submit"]:focus, a.btn:focus, button.btn:focus {
  background: #fff;
  opacity: 1;
  color: #000;
}

/* 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(--highlightcolor);
  color: #000;
  font-weight: 400;
}

.body-class-members .content-wrapper thead a {
  color: #000;
  text-decoration: underline;
}

.table th {
  font-weight: 400;
}

.php-index.body-class-members #container #globalwrap {
  background: transparent;
  border: none;
  padding: 0px;
}

.php-index #leftcontent > div, .php-index #rightcontent > div {
  background: var(--headerbg);
  border: 2px solid var(--headingcolor);
  position: relative;
}

.php-index #latestcomp h3 a {
  margin-left: 6px;
}

.php-index #globalwrap .weatherMini {
  position: absolute;
  top: 5px;
  right: 2px;
}

.php-index #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-index #globalwrap .weatherImage img {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-weatherfg #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-weatherfg #globalwrap .weatherImage img, .php-weatherfg #globalwrap .weatherImage img.image-night {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-index #globalwrap .weatherImage i {
  font-size: 28px;
}

.php-analysis .content-wrapper .pull-left, .php-courseanalysis .content-wrapper .pull-left {
  float: none;
}

.php-analysis .content-wrapper .pull-right, .php-courseanalysis .content-wrapper .pull-right {
  float: none;
}

.content-wrapper .well {
  background: transparent;
  padding: 10px;
  border: none;
  box-shadow: none;
}

.body-class-members .content-wrapper {
  line-height: 28px;
}

.body-class-members .nav-menu-information .dropdown-menu .nav-menu-information {
  display: none;
}

/*.body-class-members .content-wrapper a {
  text-decoration: underline;
}*/

.body-class-members .content-wrapper a.btn {
  text-decoration: none;
}

.body-class-members .header-login {
  display: none;
}

.body-class-members .navbar-inverse .navbar-inner {
  margin-right: 0px;
}

.php-halloffame .hallOfFame > div:nth-child(3) {
  padding-left: 20px;
}

#ui-datepicker-div {
  display: none;
}

.php-search .content-wrapper input {
  margin-bottom: 0px;
}

.body-class-members .header-wrapper .navbar-inverse .nav > li > a {
  letter-spacing: 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 {
  color: #fff;
  transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -webkit-transition: all 0ms ease-in-out;
}

.php-diary .diary-nav-right.affix a {
  color: #000;
}

.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: -9px;
  }
}

.body-class-members.php-messages #globalwrap, .body-class-members.php-forum #globalwrap {
  margin-top: 90px;
  margin-bottom: 60px;
}

.php-hcaplist .btn-group > .btn:first-child {
  border-radius: 0px;
}

.php-hcaplist .btn-group > .btn:last-child {
  border-radius: 0px;
}

.php-competition2 #globalwrap {
  background: var(--headerbg);
}

.table-striped tbody > tr:nth-child(2n+1) > td, .table-striped tbody > tr:nth-child(2n+1) > th {
  background: var(--dropdownbg);
}

.php-boardcomps .row {
  margin-left: 0px;
}

.php-boardcomps .row .span12 {
  width: 100%;
  margin-left: 0px;
}

.php-competition2 .comp-signup-time-info {
  color: #fff;
}

/* responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .content-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;
  }
  .body-class-members .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 15px;
    padding: 10px 12px;
  }
  .table td, .table th, table td, table th {
    padding: 6px;
    font-size: 14px;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 8px 12px;
  }
}

/* portrait tablet */

@media (min-width: 768px) and (max-width: 979px) {
  .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;
  }
}

/* portrait tablet and mobile */

@media (min-width: 0px) and (max-width: 979px) {
  .header-wrapper {
    border-bottom: 1px solid transparent;
  }
  .navbar-inverse .btn-navbar, .navbar-inverse .btn-navbar:hover, .navbar-inverse .btn-navbar:focus {
    background: #fff;
    float: left;
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
    position: relative;
    z-index: 1010;
    border: none;
    outline: none;
    box-shadow: none;
    text-shadow: none;
  }
  .navbar .btn-navbar .icon-bar {
    background: #000;
    box-shadow: none;
    width: 20px;
    height: 3px;
  }
  .nav-collapse, .nav-collapse.collapse {
    position: fixed;
    left: -100%;
    top: 0px;
    height: 100vh !important;
    width: 100%;
    padding: 0px;
    background: #fff;
    z-index: 1001;
    overflow-y: scroll;
    transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -webkit-transition: all 600ms ease-in-out;
  }
  .show-menu .nav-collapse, .show-menu .nav-collapse.collapse {
    left: 0px;
  }
  .navbar .nav {
    text-align: left;
  }
  .navbar .nav > li {
    display: block;
  }
  .navbar-inner {
    margin-top: 45px;
  }
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: var(--navactivelink);
  }
  .nav-collapse .dropdown-menu {
    background: #ccc;
  }
  .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: #000;
    color: #fff;
  }
  .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: #000;
    color: #fff;
  }
  .nav-collapse .dropdown-menu > li.current > a, .nav-collapse .dropdown-menu > li > a:hover, .nav-collapse .dropdown-menu > li > a:focus {
    background: #000;
    color: #fff;
  }
  .php-weatherfg div.phone-weather .weather-list-item:nth-child(2n) {
    background: transparent;
  }
  .header-wrapper {
    position: relative;
  }
  .show-menu .header-wrapper {
    position: fixed;
    top: 0px;
    z-index: 500;
  }
}

/* reduce nav width */

@media (min-width: 481px) and (max-width: 979px) {
  .nav-collapse, .nav-collapse.collapse {
    width: 350px;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .content-wrapper {
    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) {
  #login fieldset {
    transform: translateX(0px);
  }
  .nav-tabs > li > a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
  }
}

/* tee time home page fixes */

.php-index #globalwrap > .global {
  background: transparent;
  padding: 20px;
  border: 2px solid var(--headingcolor);
}

.php-index #globalwrap > .global #myupcoming {
  border: none;
  box-shadow: none;
}

.php-index #latestcomp img {
  margin-left: 6px;
}

/* editor */

.php-ckeditor .header-wrapper {
  display: none;
}

.php-ckeditor .navbar-inverse .navbar-inner {
  background: #000;
  padding: 0px 0px 6px;
}

.php-ckeditor .content-wrapper .wysiwyg-editable {
  border: 2px dashed #000;
}

.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;
}

.par {
  border-color: #fff;
  color: #fff;
}

@media (min-width: 0px) and (max-width: 800px) {
  .php-competition2 table.comps-list-table .comp-ical-td {
    right: -10px;
  }
}

.php-whshcaprecord .table tbody tr.warning.best > td {
  background: #000;
}

.php-competition2 .table-striped tbody > tr:nth-child(2n+1) > td, .php-competition2 .table-striped tbody > tr:nth-child(2n+1) > th {
  background: transparent;
}

#cluetip {
  color: #000;
}

/* end anton styles */