/* anton styles */

/* fonts */

.jost-font {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.crimson-text-regular {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

.crimson-text-semibold {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: normal;
}

.crimson-text-bold {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
}

.crimson-text-regular-italic {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: italic;
}

.crimson-text-semibold-italic {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: italic;
}

.crimson-text-bold-italic {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: italic;
}

/* variables */

:root {
  --bodyfont: 'Montserrat', sans-serif;
  --headingfont: 'Crimson Text', serif;
  --navfont: 'Jost', sans-serif;
  --headingcolor: #10203c;
  --headingcolor2: #a97a06;
  --highlightcolor: #0096ff;
  --linkhover: #0078cc;
  --buttonhighlight: #2a4727;
  --bodycolor: #555;
  --headerbg: #10203c;
  --footerbg: #fff;
  --footertext: #686868;
  --navbg: #fff;
  --navlink: #a4927f;
  --navactivelink: #10203c;
  --logosize: 102px;
  --navlogosize: 140px;
  --smallnavlogosize: 110px;
  --footerlogosize: 157px;
  --headerdot: #132d5c;
  --footerdot: #10203c;
  --footercolor: #707070;
  --footerlink: #10203c;
  --footerlinkhover: #a97a06;
  --footerline: #b7b7b7;
  --pageoverlay: rgba(0,0,0,0.6);
}

.CodeMirror-wrap .CodeMirror-scroll {
  height: 600px;
}

.content-wrapper {
  line-height: 28px;
}

/* general styles */

body {
  font-size: 16px;
  font-family: var(--bodyfont);
  color: var(--bodycolor);
  overflow-x: hidden;
}

h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: var(--headingcolor);
  margin-bottom: 30px;
  font-family: var(--headingfont);
}

h2 {
  font-weight: 400;
  font-size: 34px;
  line-height: 44px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h3 {
  font-weight: 400;
  font-size: 28px;
  line-height: 38px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--navfont);
}

h4 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #80899e;
  margin-bottom: 20px;
  font-family: var(--navfont);
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #a4927f;
  margin-bottom: 20px;
  font-family: var(--navfont);
}

h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #838383;
  font-family: var(--navfont);
}

h5 a, h6 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: #a97a06;
  color: #fff;
  display: inline-block;
  padding: 10px 30px;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--navfont);
  text-transform: uppercase;
  margin-top: 10px;
  position: relative;
  text-decoration: none;
  border-radius: 4px;
}

.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, .content-wrapper h6 a:hover, .content-wrapper h6 a:focus {
  background: #80899e;
  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(--linkhover);
  text-decoration: none;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* body effect */

.page-overlay {
  top: 0px;
  left: 0px;
  background: var(--pageoverlay);
  width: 100%;
  height: 100%;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.slide .page-overlay {
  opacity: 1;
  visibility: visible;
}

.slide .page-overlay:hover {
  cursor: url('/images/resources/royalascot/cursor-close.png'), auto;
}

/* header */

.header-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 100px;
  z-index: 150;
  background: var(--headerbg);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.header-logo {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  z-index: 30;
  top: 10px;
  width: var(--logosize);
}

.header-top-links {
  position: absolute;
  left: 65px;
  top: 40px;
  font-size: 0px;
}

.header-top-links a {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.header-top-links a:hover {
  color: var(--headingcolor2);
}

.header-top-links a::after {
  margin: 0px 10px;
  position: relative;
  top: -4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: '';
  display: inline-block;
  background: #fff;
}

.header-top-links a:last-of-type::after {
  display: none;
}

.body-public .member-book {
  display: none;
}

.body-class-members .visit-book {
  display: none;
}

#show-status:hover {
  cursor: pointer;
}

/* course status */

.status-section {
  position: fixed;
  right: 0px;
  top: -100px;
  width: 100%;
  opacity: 1;
  height: 40px;
  padding: 10px 0px;
  z-index: 10;
  text-align: left;
  color: #fff;
  background: var(--headerbg);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.status-section h3 {
  display: none;
}

.status-section .pop-up-content {
  padding: 0px 50px 0px 20px;
}

.status-section .pop-up-content p {
  margin: 0px;
}

/* close slide downs */

.pop-up-close {
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  padding: 6px;
  z-index: 20;
  position: absolute;
  right: 7px;
  top: 14px;
  color: #fff;
}

.pop-up-close .cross {
  width: 14px;
  height: 3px;
  display: inline-block;
  position: absolute;
  background: #fff;
  top: 13px;
  left: 7px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.pop-up-close .cross-3 {
  transform: rotate(45deg);
}

.pop-up-close .cross-4 {
  opacity: 1;
  transform: rotate(-45deg);
}

.pop-up-close:hover {
  cursor: pointer;
}

.pop-up-close:hover .cross-3 {
  transform: rotate(0deg);
}

.pop-up-close:hover .cross-4 {
  opacity: 0;
}

.status-disp .status-section {
  top: 0px;
}

.status-disp .header-wrapper {
  top: 60px;
}

.status-disp #hamburger-icon {
  top: 84px;
}

/* navbar styles */

.navbar {
  position: relative;
  z-index: 250;
  margin: 0px;
}

#hamburger-icon {
  position: fixed;
  top: 24px;
  right: 65px;
  padding: 16px 10px 16px;
  background: transparent;
  border: none;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

#hamburger-icon .line {
  width: 28px;
  height: 2px;
  content: '';
  display: inline-block;
  position: absolute;
  background: #fff;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

#hamburger-icon .line-1 {
  top: 19px;
  left: 70px;
}

#hamburger-icon .line-2 {
  top: 25px;
  left: 70px;
}

#hamburger-icon .line-3 {
  top: 31px;
  left: 70px;
}

#hamburger-icon:hover .line-1 {
  width: 10px;
}

#hamburger-icon:hover .line-3 {
  width: 16px;
}

#hamburger-icon .text-open {
  text-transform: uppercase;
  font-size: 16px;
  margin-right: 50px;
  font-weight: 500;
  font-family: var(--navfont);
  color: #fff;
}

#myNavbar {
  position: fixed;
  right: -450px;
  top: 0px;
  width: 450px;
  height: 100vh !important;
  overflow-y: scroll !important;
  z-index: 250;
  background: var(--navbg);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.slide #myNavbar {
  right: 0px;
}

.navbar .nav {
  float: none;
  margin: 30px 0px 20px;
}

.navbar .nav > li {
  float: none;
  padding: 0px;
}

.navbar .nav > li > a {
  text-transform: capitalize;
  padding: 10px 0px;
  position: relative;
  line-height: 30px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 0px;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--headingfont);
  text-shadow: none;
  color: var(--navlink);
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.navbar .nav > li > a:hover, .navbar .nav > li.current > a, .navbar .nav > li > a:focus, .navbar .nav > li.active > a {
  background: transparent;
  color: var(--navactivelink);
  padding-left: 20px;
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  background: transparent;
  box-shadow: none;
  color: var(--navactivelink);
}

#myNavbar .dropdown-menu {
  position: relative;
  background: transparent;
  float: none;
  border: none;
  box-shadow: none;
  height: 0px;
  overflow: hidden;
  display: block;
  padding: 0px;
  transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}

.open .dropdown-menu {
  padding: 5px 0px;
}

#myNavbar .nav > li.open .dropdown-menu {
  height: auto;
}

.dropdown-menu > li > a {
  text-transform: capitalize;
  padding: 8px 0px 8px 27px;
  line-height: 22px;
  font-size: 22px;
  letter-spacing: 0px;
  font-family: var(--headingfont);
  color: var(--navlink);
  font-weight: 700;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li.current > a, .dropdown-menu > li > a:focus {
  background: transparent;
  background-image: none;
  color: var(--navactivelink);
}

.navbar .nav > li > a::after {
  content: '';
  position: absolute;
  top: 23px;
  left: 0px;
  width: 0px;
  height: 2px;
  background: var(--navlink);
  display: inline-block;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.navbar .nav > li.open.nav-haslevel-2 > a::after {
  background: var(--navactivelink);
  width: 10px;
}

.navbar .nav > li.active > a::after, .navbar .nav > li.current > a::after {
  background: var(--navactivelink);
  width: 10px;
}

.navbar .nav > li > a:hover::after {
  background: var(--navactivelink);
  width: 10px;
}

.nav-wrapper {
  padding: 40px;
}

.nav-close {
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  padding: 6px;
  position: absolute;
  top: 22px;
  right: 20px;
  color: var(--headingcolor2);
}

.nav-close .cross {
  width: 25px;
  height: 2px;
  display: inline-block;
  position: absolute;
  background: var(--headingcolor);
  top: 15px;
  left: 0px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.nav-close .cross-1 {
  transform: rotate(45deg);
}

.nav-close .cross-2 {
  opacity: 1;
  transform: rotate(-45deg);
}

.text-close {
  margin-left: 18px;
}

.nav-close:hover {
  cursor: pointer;
}

.nav-close:hover .cross-1 {
  transform: rotate(0deg);
}

.nav-close:hover .cross-2 {
  opacity: 0;
}

.nav-logo {
  text-align: center;
  padding-top: 5px;
  margin: 0px auto;
  width: var(--navlogosize);
}

.nav-menu-information .dropdown-menu .nav-menu-information {
  display: none;
}

.nav-links {
  margin: 20px 0px;
}

.nav-links a {
  display: block;
  padding: 7px 0px;
  background: transparent;
  color: var(--navactivelink);
  text-transform: uppercase;
  border-radius: 0px;
  font-weight: 500;
  font-size: 18px;
  font-family: var(--navfont);
  margin-bottom: 0px;
  letter-spacing: 0.6px;
}

.nav-links a:hover, .nav-links a:focus {
  color: var(--navlink);
}

.nav-text p {
  margin: 10px 0px;
}

.nav-text a {
  text-transform: uppercase;
  color: var(--navactivelink);
  font-size: 17px;
  line-height: 24px;
}

.nav-text a:hover, .nav-text a:focus {
  color: var(--navlink);
}

.nav-tel {
  margin-top: 30px;
  font-family: var(--navfont);
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: var(--navlink);
  font-weight: 500;
}

.nav-tel a {
  color: var(--navlink);
}

.nav-tel a:hover, .nav-tel a:focus {
  color: #80899e;
}

.nav-social {
  margin-top: 20px;
}

.nav-social a {
  color: var(--navlink);
  margin-right: 8px;
  font-size: 18px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid var(--navlink);
  width: 33px;
  line-height: 33px;
  height: 33px;
  text-align: center;
}

.nav-social a img {
  position: relative;
  width: 16px;
  top: -2px;
}

.nav-social a:hover, .nav-social a:focus {
  opacity: 0.7;
}

.nav-design {
  margin-top: 10px;
}

.nav-design a {
  color: #10203c;
  font-size: 14px;
  font-family: var(--navfont);
  text-transform: uppercase;
}

.nav-design a:hover {
  opacity: 0.7;
}

.nav-design a img {
  width: 120px;
}

/* footer */

.footer {
  padding: 60px 0px 40px;
  background: var(--footerbg);
  text-align: center;
}

.footer-space {
  width: 1170px;
  margin: 0px auto;
}

.footer-logo {
  margin-bottom: 35px;
}

.footer-logo img {
  width: var(--footerlogosize);
}

.footer-contact {
  color: var(--footerlink);
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  font-family: var(--navfont);
}

.footer-contact a {
  color: var(--footerlink);
}

.footer-contact a:hover, .footer-contact a:focus {
  color: var(--footerlinkhover);
}

.footer-contact .footer-dot {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0px 15px;
  background: var(--footerdot);
  position: relative;
  top: -4px;
}

.footer-address {
  margin-top: 5px;
  color: var(--footerlink);
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  font-family: var(--navfont);
}

.footer-links {
  margin-top: 20px;
  font-size: 17px;
  font-family: var(--navfont);
}

.footer-links a {
  color: var(--navlink);
}

.footer-links a:hover, .footer-links a:focus {
  color: var(--footerlinkhover);
}

.footer-links .footer-links-dot {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0px 15px;
  background: var(--navlink);
  position: relative;
  top: -4px;
}

.footer-links img {
  width: 120px;
}

.footer-social {
  margin-top: 40px;
}

.footer-social a {
  display: inline-block;
  width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  border: 1px solid #80899e;
  color: #80899e;
  margin-right: 12px;
  border-radius: 50%;
  font-size: 16px;
}

.footer-social img {
  width: 16px;
  position: relative;
  top: -2px;
}

.footer-social a.footer-insta {
  margin-right: 0px;
}

.footer-social a:hover, .footer-social a:focus {
  opacity: 0.7;
}

.footer-line {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid var(--footerline);
}

.footer-flex {
  padding: 0px 20px;
  display: flex;
}

.ff-links {
  width: 50%;
  margin-right: 10px;
  text-align: left;
  font-size: 0px;
  line-height: 30px;
}

.ff-links a {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--footerlink);
  font-weight: 600;
}

.ff-links a:hover, .ff-links a:focus {
  color: var(--headingcolor2);
}

.ff-links a img {
  width: 18px;
  position: relative;
  top: -2px;
}

.ff-links a.footer-twit {
  margin-left: 10px;
}

.ff-links a.footer-face {
  font-size: 22px;
  margin-left: 10px;
  color: #3a559f;
  position: relative;
  top: 2px;
}

.ff-links a.footer-insta {
  font-size: 22px;
  margin-left: 10px;
  color: #d00080;
  position: relative;
  top: 2px;
}

.ff-links a.footer-twit:hover {
  opacity: 0.7;
}

.ff-links a.footer-face:hover {
  opacity: 0.7;
}

.ff-links a.footer-insta:hover {
  opacity: 0.7;
}

.ff-vert-line {
  content: '';
  display: inline-block;
  margin: 0px 8px;
  width: 1px;
  height: 10px;
  position: relative;
  top: 0px;
  background: var(--headingcolor);
}

.ff-design {
  width: 50%;
  margin-left: 10px;
  text-align: right;
}

.ff-design a {
  color: var(--headingcolor);
  margin-left: 20px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.ff-design a:hover, .ff-design a:focus {
  color: var(--headingcolor2);
}

.ff-design img {
  width: 120px;
}

/* members */

body {
  background: #eee;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.content-wrapper {
  width: 1170px;
  margin: 0px auto;
}

#globalwrap, .php-messages #container #globalwrap {
  margin-top: 210px;
  margin-bottom: 60px;
  border: 2px solid var(--headingcolor);
  padding: 20px;
  background: rgba(255,255,255,0.9);
}

/* sticky footer */

@media (min-width: 768px) {
  html {
    position: relative;
    min-height: 100%;
  }
  body {
   margin-bottom: 550px; 
  }
  .footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 363px;
  }
}

/* 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: #a97a06;
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  margin: 2px;
  font-family: var(--navfont);
  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: #80899e;
  color: #fff;
}

/* 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: 5px;
  right: 5px;
}

.php-index #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-index #globalwrap .weatherImage img {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-weatherfg #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-weatherfg #globalwrap .weatherImage img, .php-weatherfg #globalwrap .weatherImage img.image-night {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-index #globalwrap .weatherImage i {
  font-size: 28px;
}

.php-analysis .content-wrapper .pull-left, .php-courseanalysis .content-wrapper .pull-left {
  float: none;
}

.php-analysis .content-wrapper .pull-right, .php-courseanalysis .content-wrapper .pull-right {
  float: none;
}

.content-wrapper .well {
  background: transparent;
  padding: 10px;
  border: none;
  box-shadow: none;
}

.body-class-members .content-wrapper {
  line-height: 28px;
}

.body-class-members .nav-menu-information .dropdown-menu .nav-menu-information {
  display: none;
}

/*.body-class-members .content-wrapper a {
  text-decoration: underline;
}*/

.body-class-members .content-wrapper a.btn {
  text-decoration: none;
}

.body-class-members .header-login {
  display: none;
}

.body-class-members .navbar-inverse .navbar-inner {
  margin-right: 0px;
}

.php-halloffame .hallOfFame > div:nth-child(3) {
  padding-left: 20px;
}

#ui-datepicker-div {
  display: none;
}

.php-search .content-wrapper input {
  margin-bottom: 0px;
}

.body-class-members .header-wrapper .navbar-inverse .nav > li > a {
  text-transform: capitalize;
  font-size: 15px;
  letter-spacing: 0px;
}

.body-class-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 {
    width: 940px;
  }
  .footer-space {
    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;
  }
}

/* portrait tablet */

@media (min-width: 768px) and (max-width: 979px) {
  .content-wrapper {
    width: 724px;
  }
  .header-top-links {
    top: 20px;
  }
  .header-top-links a {
    display: block;
    font-size: 14px;
    text-align: left;
    padding: 5px 0px;
  }
  .header-top-links a::after {
    display: none;
  }
  .footer-space {
    width: 724px;
  }
  .ff-design a {
    margin: 0px;
  }
  .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) {
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: var(--navlink);
    font-weight: 400;
    margin: 0px;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .nav > li.active > a, .navbar-inverse .nav-collapse .nav > li.current > a {
    background: transparent;
    color: var(--navactivelink);
  }
  .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus, .navbar-inverse .nav-collapse .dropdown-menu > li.current > a {
    background: transparent;
    color: var(--navactivelink);
  }
  .nav-collapse .dropdown-menu {
    margin: 0px;
  }
  .nav-collapse .dropdown-menu a {
     padding: 8px 25px 8px 40px;
  }
  .navbar .nav > li {
    padding: 5px 0px;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .content-wrapper {
    width: auto;
    margin: 0px 10px;
  }
  .header-space {
    width: auto;
    margin: 0px 10px;
  }
  .header-top-links {
    display: none;
  }
  #hamburger-icon {
    width: 70px;
    height: 52px;
    right: 20px;
  }
  #hamburger-icon .line-1 {
    left: 30px;
  }
  #hamburger-icon .line-2 {
    left: 30px;
  }
  #hamburger-icon .line-3 {
    left: 30px;
  }
  #hamburger-icon .text-open {
    display: none;
  }
  .footer-space {
    width: auto;
    margin: 0px 10px;
  }
  .footer-contact {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  .footer-contact > span {
    display: block;
  }
  .footer-contact .footer-dot {
    display: none;
  }
  .footer-links > span {
    display: block;
  }
  .footer-links .footer-links-dot {
    background: transparent;
    margin: 5px 0px;
    display: block;
  }
  .footer-address {
    font-size: 15px;
    line-height: 20px;
  }
  .footer-flex {
    flex-direction: column;
  }
  .ff-links {
    width: 100%;
    text-align: center;
    margin: 0px;
  }
  .ff-links a {
    display: block; 
  }
  .ff-links a.footer-twit {
    display: inline-block;
    margin: 0px;
  }
  .ff-links a.footer-face {
    display: inline-block;
    margin: 0px 10px;
  }
  .ff-links a.footer-insta {
    display: inline-block;
    margin: 0px;
  }
  .ff-vert-line {
    display: none;
  }
  .ff-design {
    margin: 10px 0px 0px;
    text-align: center;
    width: 100%;
  }
  .ff-design a {
    display: block;
    margin: 5px 0px;
  }
  .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;
  }
  body[class*="php-"] .nav-section, .body-class-members .nav-section, .body-class-visitorbooking .nav-section, .body-class-getawayletter .nav-section, [class*="body-class-setcoursestatus"] .nav-section, .body-class-opens .nav-section, .body-loginpage .nav-section, body[class*="match"]:not(.body-contentpage) .nav-section, .invalid-page .nav-section {
    width: auto;
  }
}

/* small mobile */

@media (min-width: 0px) and (max-width: 480px) {
  #login fieldset {
    transform: translateX(0px);
  }
  .nav-tabs > li > a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
  }
  #myNavbar {
    width: 100%;
    right: -550px;
  }
}

/* editor */

.php-ckeditor .header-wrapper {
  display: none;
}

.php-ckeditor .wysiwyg-editable {
  border: 2px dashed #000;
}

.php-ckeditor .navbar-inverse #hamburger-icon {
  display: none;
}

.php-ckeditor #globalwrap {
  margin-top: 100px;
}

.php-ckeditor a.btn {
  color: #fff;
  border-color: #fff;
}

.php-ckeditor a.btn.active {
  background: var(--headingcolor);
}

@media (min-width: 0px) and (max-width: 767px) {
  .header-wrapper {
    padding-top: 40px;
    min-height: 90px;
    position: relative;
  }
  .header-logo {
    top: 50px;
    width: 89px;
  }
  #hamburger-icon {
    top: -64px;
    position: absolute;
  }
  #globalwrap, .php-messages #container #globalwrap {
    margin: 60px 0px;
  }
}

/* end anton styles */