/* anton styles */

/* variables */

:root {
  --bodyfont: 'Inter', sans-serif;
  --headingfont: 'Inter', sans-serif;
  --headingcolor: #1F282D;
  --headingcolor2: #C8AA26;
  --highlightcolor: #C8AA26;
  --bodycolor: #666;
  --headerbg: #000;
  --topfooterbg: #F8F8F8;
  --bottomfooterbg: #F8F8F8;
  --navlink: #fff;
  --navactivelink: #C8AA26;
  --dropdownbg: #333;
  --scorecardwhite: #eee;
  --scorecardyellow: #fc0;
  --scorecardred: #c80000;
  --scorecardgold: #c4a811;
  --scorecardblue: #0000c8;
}

.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;
}

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(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--bodyfont);
}

h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--headingcolor2);
  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(--bodyfont);
}

h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: var(--headingcolor2);
  color: #fff;
  display: inline-block;
  padding: 6px 20px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: 0px;
  margin-top: 10px;
  border: none;
  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: var(--headingcolor);
  color: var(--navactivelink);
  text-decoration: none;
}

a {
  color: var(--headingcolor);
  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(--headingcolor2);
  text-decoration: none;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* header styles */

.header-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1001;
  min-height: 90px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.fix .header-wrapper {
  background: #000;
}

.body-public.body-class-home .header-logo, .body-public.body-contentpage .header-logo, .body-public.body-class- .header-logo {
  position: absolute;
  top: -100px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  text-align: center;
  z-index: 40;
  width: 118px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.fix.body-public.body-class-home .header-logo, .fix.body-public.body-contentpage .header-logo, .fix.body-public.body-class- .header-logo {
  top: 5px;
}

.header-links {
  position: absolute;
  left: 100px;
  top: 80px;
  z-index: 20;
  line-height: 20px;
  text-shadow: 1px 1px #000;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.fix .header-links {
  left: 20px;
  top: 36px;
}

.header-links a {
  color: #fff;
  font-size: 18px;
  margin-right: 7px;
}

.header-links a.visit-book {
  text-transform: uppercase;
  font-size: 16px;
  margin-left: 5px;
}

.header-links a:hover, .header-links a:focus {
  color: var(--highlightcolor);
}

/* navbar */

#hamburger-icon {
  position: absolute;
  top: 52px;
  right: 50px;
  width: 150px;
  height: 80px;
  background: transparent;
  border: none;
  z-index: 20;
  border-radius: 0px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.fix #hamburger-icon {
  top: 5px;
  right: 0px;
}

#hamburger-icon:hover, .show-menu #hamburger-icon {
  background: transparent;
}

#hamburger-icon .line {
  height: 2px;
  background: #fff;
  left: 10px;
  position: absolute;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

#hamburger-icon:hover .line, .show-menu #hamburger-icon .line {
  background: var(--headingcolor2);
}

.show-menu #hamburger-icon:hover .line {
  background: #fff;
}

#hamburger-icon .line-1 {
  top: 28px;
  width: 33px;
  left: 18px;
}

#hamburger-icon .line-2 {
  top: 39px;
  width: 41px;
  opacity: 1;
}

#hamburger-icon .line-3 {
  top: 50px;
  width: 24px;
  left: 27px;
}

.show-menu #hamburger-icon .line-1 {
  top: 39px;
  transform: rotate(45deg);
  width: 36px;
  left: 12px;
}

.show-menu #hamburger-icon .line-2 {
  opacity: 0;
}

.show-menu #hamburger-icon .line-3 {
  top: 39px;
  width: 36px;
  transform: rotate(-45deg);
  left: 12px;
}

/*.fix.show-menu #hamburger-icon .line-1, .fix #hamburger-icon .line-1 {
  top: 32px;
}

.fix.show-menu #hamburger-icon .line-2, .fix #hamburger-icon .line-2 {
  top: 45px;
}

.fix #hamburger-icon .line-3 {
  top: 58px;
}

.fix.show-menu #hamburger-icon .line-1 {
  top: 45px;
}

.fix.show-menu #hamburger-icon .line-3 {
  top: 45px;
} */

.menu-open {
  opacity: 1;
  position: absolute;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  top: 30px;
  left: 80px;
  text-shadow: 1px 1px #000;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

#hamburger-icon:hover .menu-open {
  color: var(--headingcolor2);
}

.show-menu .menu-open {
  opacity: 0;
}

.fix .menu-open {
  top: 30px;
}

.menu-close {
  opacity: 0;
  position: absolute;
  color: var(--headingcolor2);
  text-transform: uppercase;
  letter-spacing: 2px;
  top: 30px;
  left: 80px;
  text-shadow: 1px 1px #000;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

#hamburger-icon:hover .menu-close {
  color: #fff;
}

.show-menu .menu-close {
  opacity: 1;
}

.fix .menu-close {
  top: 30px;
}

#myNavbar {
  position: fixed;
  top: 0px;
  right: -350px;
  min-height: 100vh;
  background: #000;
  width: 350px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.show-menu #myNavbar {
  right: 0px;
}

.nav-wrapper {
  margin-top: 120px;
  padding: 12px 30px 30px;
  height: calc(100vh - 144px);
  overflow-y: auto;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.fix .nav-wrapper {
  margin-top: 80px;
}

.navbar {
  margin: 0px;
}

.navbar .nav {
  float: none;
  margin: 0px;
}

.navbar .nav > li {
  float: none;
  border-bottom: 1px solid rgba(255,255,255,1);
}

.navbar-inverse .nav > li > a {
  color: #fff;
  position: relative;
}

.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.nav-haslevel-2 > a::after {
  content: '\f107';
  font-family: 'FontAwesome';
  position: absolute;
  right: -4px;
  top: 11px;
  font-size: 20px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.navbar-inverse .nav > li.open.nav-haslevel-2 > a::after {
  transform: rotate(180deg);
}

.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 {
  position: relative;
  background: var(--dropdownbg);
  border: none;
  box-shadow: none;
  float: none;
  margin: 0px 10px;
  border-radius: 0px;
}

.navbar .nav > li > .dropdown-menu::before, .navbar .nav > li > .dropdown-menu::after {
  display: none;
}

.dropdown-menu > li > a {
  color: #fff;
  padding: 6px 20px;
}

.body-public.body-class-home .dropdown-menu > li > a, .body-public.body-contentpage .dropdown-menu > li > a, .body-public.body-class- .dropdown-menu > li > a {
  white-space: normal;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > li.current > a {
  background: transparent;
  color: var(--navactivelink);
}

.nav-logo {
  margin: 10px 0px 20px;
  text-align: center;
}

.nav-status h3 {
  color: #fff;
  margin: 0px 0px 20px;
  padding-top: 15px;
}

.nav-status {
  color: #fff;
}

/* footer */

.public-footer {
  padding: 150px 0px 0px;
  background: var(--topfooterbg);
}

.pf-flex {
  display: flex;
}

.pf-flex h4 {
  margin: 0px 0px 30px;
  color: var(--headingcolor);
  font-size: 28px;
  line-height: 38px;
}

.pf-contact {
  width: 50%;
  margin-right: 15px;
}

.pf-contact a {
  color: var(--bodycolor);
}

.pf-contact a:hover, .pf-contact a:focus {
  color: var(--headingcolor2);
}

.pf-social {
  font-size: 22px;
  margin-top: 25px;
}

.pf-social a {
  margin-right: 10px;
}

.pf-newsletter {
  width: 50%;
  margin-left: 15px;
}

.pf-newsletter {
  position: relative;
}

.pf-newsletter form {
  margin: 0px;
  max-width: 550px;
  position: relative;
}

.pf-newsletter label {
  position: absolute;
  left: 15px;
  top: 30px;
  color: black;
  opacity: 1;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.pf-newsletter .hide-label label {
  opacity: 0;
}

.pf-newsletter input {
  width: calc(100% - 106px);
  height: 56px;
  padding: 10px 86px 10px 10px;
  border-radius: 50px;
  margin-bottom: 0px !important;
}

.pf-newsletter input[type*="submit"] {
  position: absolute;
  right: 10px;
  top: 3px;
  width: 73px;
  background: url('/images/resources/doha/link-arrow.png');
  height: 72px;
  color: #fff;
  border: none;
  font-size: 0px;
  padding: 0px;
}

.pf-newsletter input[type*="submit"]:hover {
  background: url('/images/resources/doha/link-arrow.png');
}

.pf-logos {
  margin: 60px auto 0px;
  text-align: center;
  padding-bottom: 60px;
}

.pf-logos .additional-boxes {
  display: flex;
  margin: 0px;
  align-items: center;
  flex-wrap: wrap;
}

.body-public .pf-logos .wysiwyg-editable > br {
  display: none;
}

.pf-logos .inserted-block {
  flex: 1 1 0;
  padding: 0px;
}

.pf-line {
  border-bottom: 1px solid #BBB;
}

.members-footer {
  padding: 15px 0px;
  background: var(--bottomfooterbg);
}

.mf-flex {
  display: flex;
}

.mf-copy {
  padding-top: 9px;
  width: 75%;
}

.mf-copy a {
  color: var(--bodycolor);
}

.mf-copy a:hover, .mf-copy a:focus {
  color: var(--headingcolor2);
}

.mf-ig-logo {
  width: 25%;
  text-align: right;
}

.mf-ig-logo img {
  width: 120px;
}

/* page */

#globalwrap {
  padding-top: 0px;
}

.page-space {
  padding: 0px 200px;
}

/* home */

.home-slideshow {
  position: relative;
}

.home-slideshow .galleryInner {
  width: 100% !important;
  height: 100vh !important;
}

.home-slideshow .galleryWrapper::after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(0,0,0,0.3);
}

.home-slideshow .galleryInner img {
  width: 100% !important;
  height: 100vh !important;
  object-fit: cover;
}

#home-logo-slide {
  position: absolute;
  z-index: 18;
  width: 100%;
  text-align: center;
  display: none;
  top: -800px;
}

.page-scroll {
  position: absolute;
  z-index: 12;
  bottom: 70px;
  width: 100px;
  text-align: center;
  margin: 0px auto;
  left: 0px;
  right: 0px;
  color: #fff;
  font-size: 36px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.page-scroll:hover {
  cursor: pointer;
  color: #fc0;
}

.home-equal {
  display: flex;
  align-items: center;
}

.home-equal.flip-flex {
  flex-direction: row-reverse;
}

.home-equal-content {
  width: 49.5%;
}

.hc-space {
  padding: 10px 250px 10px 125px;
}

.hc-space h1 {
  font-size: 52px;
  line-height: 62px;
  margin: 0px 0px 40px;
}

.hc-space h2 {
  font-size: 52px;
  line-height: 62px;
  margin: 0px 0px 40px;
}

.hc-space h4 {
  color: var(--headingcolor);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0px 0px 10px;
}

.hc-space a {
  text-transform: uppercase;
  color: var(--bodycolor);
}

.hc-space a:hover {
  text-decoration: underline;
}

.home-equal-pic {
  width: 50.5%;
}

.hc-space h5 a {
  color: #fff;
}

/* .home-main h5 a, .inner-main h5 a, .hole-main h5 a {
  background: transparent;
  color: var(--headingcolor);
  line-height: 73px;
  padding: 0px;
  text-transform: initial;
  font-size: 26px;
  letter-spacing: 0px;
}

.home-main h5 a::before, .inner-main h5 a::before, .hole-main h5 a::before {
  content: url('/images/resources/doha/link-arrow.png');
  float: left;
  margin-right: 20px;
}

.home-main h5 a:hover, .home-main h5 a:focus, .inner-main h5 a:hover, .inner-main h5 a:focus, .hole-main h5 a:hover, .hole-main h5 a:focus {
  background: transparent;
  color: var(--headingcolor2);
} */

.hfp-pic {
  position: relative;
}

.hfp-pic::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.hfp-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  left: 20px;
  right: 20px;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0px auto;
}

.hfp-content h2 {
  margin: 0px 0px 20px;
  font-size: 48px;
  line-height: 58px;
  color: #fff;
}

.hfp-content p {
  font-size: 24px;
  line-height: 34px;
}

.hfp-content h6 {
  color: var(--headingcolor2);
  text-transform: uppercase;
}

/* carousel */

.carousel-content {
  position: relative;
  margin-left: 200px;
  width: calc(100vw - 400px);
}

.carousel-holder {
  margin: 100px auto 0px;
  width: 100%;
  height: 670px;
  left: 0px;
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  list-style: none;
  margin: 0px 0px 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
}

.jcarousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8%;
  z-index: 30;
}

.jcarousel-next:hover {
  cursor: pointer;
}

.carousel-item {
  float: left;
  width: 436px;
  margin-right: 20px;
}

.carousel-item img {
  height: 670px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.carousel-pic {
  position: relative;
}

.carousel-overlay {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.carousel-item:hover .carousel-overlay {
  background: transparent;
}

.carousel-item-content {
  position: absolute;
  bottom: 40px;
  left: 20px;
  right: 20px;
  color: #fff;
  text-shadow: 1px 1px #000;
  z-index: 5;
}

.carousel-item-content {
  margin: 0px;
  color: #fff;
  padding: 10px 0px;
  font-size: 16px;
  line-height: 26px;
}

.carousel-item-content strong {
  font-weight: 400;
  color: var(--headingcolor2);
}

.carousel-item-content h4 {
  color: #fff;
  font-size: 32px;
  line-height: 42px;
  margin: 0px 0px 10px;
}

.carousel-item-content h5 {
  color: var(--headingcolor2);
  font-size: 32px;
  line-height: 42px;
  margin: 0px 0px 10px;
}

.body-public [class*="editor-only"] {
  display: none;
}

.experiences-row {
  position: relative;
}

.experiences-counter {
  width: 200px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.current-page {
  display: inline-block;
}

.current-page a {
  font-size: 0px;
  transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -webkit-transition: all 0ms ease-in-out;
}

.current-page a.active {
  font-size: 120px;
  color: var(--bodycolor);
}

.jcarousel-end {
  display: inline-block;
  position: relative;
  top: -26px;
  font-size: 50px;
  color: #31393C;
}

.page-grey-bg {
  padding: 150px 0px;
  background: #f3f3f3;
}

.experiences-title h2 {
  font-size: 52px;
  line-height: 62px;
  margin: 0px;
}

.exp-row {
  display: flex;
  align-items: center;
}

.experiences-title {
  flex: 1 1 0;
}

.carousel-bar {
  flex: 1 1 0;
  text-align: right;
  line-height: 4px;
}

.carousel-bar a {
  display: inline-block;
  width: 16%;
  background: var(--headingcolor2);
  height: 4px;
  font-size: 0px;
}

.carousel-bar a.active {
  background: var(--headingcolor);
}

/* inner */

.body-public .home-slideshow > .wysiwyg-editable > br {
  display: none;
}

.body-public.body-contentpage #global > br {
  display: none;
}

.inner-slide-logo {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  z-index: 20;
  width: 290px;
  top: 60px;
}

.inner-nav {
  padding: 10px 0px;
  background: #f3f3f3;
  text-align: center;
}

.inner-nav h2 {
  display: none;
}

.inner-nav ul {
  margin: 0px;
  font-size: 0px;
}

.inner-nav ul li {
  display: inline-block;
  margin: 0px 10px;
}

.inner-nav ul li a {
  color: var(--bodycolor);
  font-size: 16px;
}

.inner-nav ul li.current a, .inner-nav ul li a:hover, .inner-nav ul li a:focus {
  color: var(--headingcolor);
}

.inner-full {
  text-align: center;
  margin-top: 100px;
}

.inner-full h1 {
  margin: 0px 0px 10px;
  font-size: 52px;
  line-height: 62px;
}

.inner-full h4 {
  margin-top: 0px;
  text-transform: uppercase;
  color: var(--headingcolor);
}

.inner-two-equal {
  display: flex;
  margin-top: 60px;
}

.inner-two-equal.no-fancy-row {
  align-items: center;
}

.no-fancy-row .ite-space {
  padding: 20px 150px 20px 60px;
}

.flip-flex {
  flex-direction: row-reverse;
}

.ite-pic {
  width: 50%;
  margin-left: 20px;
}

.flip-flex .ite-pic {
  margin-right: 20px;
  margin-left: 0px;
}

.ite-col {
  margin-right: 20px;
  width: 50%;
}

.flip-flex .ite-col {
  margin-left: 20px;
  margin-right: 0px;
}

.ite-space {
  padding: 60px 150px 20px 60px;
}

.inner-fancy-image-row {
  position: relative;
  margin: 230px 0px 200px;
}

.additional-boxes .inner-fancy-image-row {
  margin-bottom: 50px;
}

.additional-boxes {
  margin-bottom: 150px;
}

.ifir-large {
  margin-left: 30px;
}

.flip-flex .ifir-large {
  text-align: right;
}

.ifir-medium {
  position: absolute;
  right: 0px;
  top: -300px;
  width: 650px;
}

.flip-flex .ifir-medium {
  left: 0px;
  right: auto;
}

.ifir-small {
  position: absolute;
  right: 0px;
  bottom: 60px;
  width: 490px;
}

.flip-flex .ifir-small {
  left: 0px;
  right: auto;
}

.inner-full-added {
  text-align: center;
}

.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;
}

/* course */

.scorecard-box {
  padding: 20px 0px 30px;
  text-align: center;
}

.scorecard-box a {
  background: var(--headingcolor2);
  color: var(--headingcolor);
  display: inline-block;
  padding: 6px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0px;
  letter-spacing: 2px;
  position: relative;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.scorecard-box a:hover, .scorecard-box a.disp {
  background: #000;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.scorecard-box a.disp:hover {
  color: #fff;
}

.scorecard-box #score-open-link.hide {
  display: none;
}

.scorecard-box #score-close-link {
  display: none;
}

.scorecard-box #score-close-link.disp {
  display: inline-block;
}

.scorecard-box .scorecard-content {
  display: none;
  padding-top: 60px;
}

.scorecard-open > a#score-open-link::after {
    position: absolute;
    content: '\f107';
    font-family: 'FontAwesome';
    right: 5px;
}

.scorecard-open > a#score-close-link::after {
    position: absolute;
    content: '\f106';
    font-family: 'FontAwesome';
    right: 5px;
}

.inner-page-wrapper .scorecard-content th, .inner-page-wrapper .scorecard-content td {
  text-align: center;
  border: 2px solid var(--headingcolor2);
}

.inner-page-wrapper .scorecard-content th:nth-child(2), .inner-page-wrapper .scorecard-content td:nth-child(2) {
  background: var(--scorecardgold);
  color: black;
}

.inner-page-wrapper .scorecard-content th:nth-child(5), .inner-page-wrapper .scorecard-content td:nth-child(5) {
  background: var(--scorecardblue);
  color: white;
}

.inner-page-wrapper .scorecard-content th:nth-child(8), .inner-page-wrapper .scorecard-content td:nth-child(8) {
  background: var(--scorecardwhite);
  color: black;
}

.inner-page-wrapper .scorecard-content th:nth-child(11), .inner-page-wrapper .scorecard-content td:nth-child(11) {
  background: var(--scorecardyellow);
  color: black;
}

.inner-page-wrapper .scorecard-content th:nth-child(14), .inner-page-wrapper .scorecard-content td:nth-child(14) {
  background: var(--scorecardred);
  color: white;
}

.inner-page-wrapper.academy-course-intro .scorecard-content th:nth-child(2), .inner-page-wrapper.academy-course-intro .scorecard-content td:nth-child(2) {
  background: var(--scorecardblue);
  color: white;
}

.inner-page-wrapper.academy-course-intro .scorecard-content th:nth-child(5), .inner-page-wrapper.academy-course-intro .scorecard-content td:nth-child(5) {
  background: var(--scorecardwhite);
  color: black;
}

.inner-page-wrapper.academy-course-intro .scorecard-content th:nth-child(8), .inner-page-wrapper.academy-course-intro .scorecard-content td:nth-child(8) {
  background: var(--scorecardred);
  color: white;
}

.inner-page-wrapper.academy-course-intro .scorecard-content th:nth-child(11), .inner-page-wrapper.academy-course-intro .scorecard-content td:nth-child(11) {
  background: var(--scorecardyellow);
  color: black;
}

.inner-page-wrapper .scorecard-content th:nth-child(17), table.scorecard td:nth-child(17), .inner-page-wrapper .scorecard-content th:nth-child(18), table.scorecard td:nth-child(18), .inner-page-wrapper .scorecard-content th:nth-child(19), table.scorecard td:nth-child(19), .inner-page-wrapper .scorecard-content th:nth-child(20), table.scorecard td:nth-child(20), .inner-page-wrapper .scorecard-content th:nth-child(21), table.scorecard td:nth-child(21), .inner-page-wrapper .scorecard-content th:nth-child(22), table.scorecard td:nth-child(22) {
  display: none;
}

.inner-page-wrapper table.scorecard.table thead tr th {
  border-top: 2px solid var(--headingcolor2);
}

/* hole */

.hole-page-wrapper .hole-nav {
  background: #f3f3f3;
  padding: 10px 0px;
}

.hole-nav {
  margin: 0px auto;
  text-align: center;
}

.inner-page-wrapper .hole-nav {
  margin-top: 30px;
}

.hole-nav h2 {
  display: none;
}

.hole-nav ul {
  margin: 0px;
}

.hole-nav ul li {
  display: inline-block;
  margin: 0px 8px;
}

.hole-nav ul li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: var(--bodycolor);
  font-size: 20px;
}

.hole-nav ul li a:hover, .hole-nav ul li a:focus, .hole-nav ul li.current a {
  color: var(--headingcolor);
}

.hole-flex {
  display: flex;
  margin: 100px 0px 200px;
}

.hole-info {
  width: 25%;
}

.hole-info h1 {
  margin: 0px 0px 10px;
  font-size: 58px;
  line-height: 68px;
}

.hole-info h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--headingcolor);
  margin-bottom: 60px;
}

.page-space.no-right-space {
  padding-right: 0px;
}

.hole-yards {
  text-transform: uppercase;
}

.hole-yards > div {
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hole-yards .blue::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--scorecardblue);
  margin-right: 8px;
  border-radius: 50%;
  float: left;
  position: relative;
  top: 2px;
}

.hole-yards .white::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--scorecardwhite);
  margin-right: 8px;
  border-radius: 50%;
  float: left;
  position: relative;
  top: 2px;
}

.hole-yards .yellow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--scorecardyellow);
  margin-right: 8px;
  border-radius: 50%;
  float: left;
  position: relative;
  top: 2px;
}

.hole-yards .red::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--scorecardred);
  margin-right: 8px;
  border-radius: 50%;
  float: left;
  position: relative;
  top: 2px;
}

.hole-book {
  margin-top: 50px;
}

.hole-map {
  width: 25%;
  margin: 0px 50px;
  text-align: center;
}

.hole-map img {
  max-width: 290px;
  width: 100%;
}

.hole-video {
  width: 50%;
}

.hole-video iframe {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

/* 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 {
  background: url('/images/resources/doha/latest-members-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

body[class*="php-"] .header-wrapper, .body-class-members .header-wrapper, .body-class-visitorbooking .header-wrapper, .body-class-getawayletter .header-wrapper, [class*="body-class-setcoursestatus"] .header-wrapper, .body-class-opens .header-wrapper, .body-loginpage .header-wrapper, .invalid-page .header-wrapper {
  background: var(--headingcolor);
  width: 100%;
  min-height: 90px;
  position: relative;
}

body[class*="php-"] .nav-section, .body-class-members .nav-section, .body-class-visitorbooking .nav-section, .body-class-getawayletter .nav-section, [class*="body-class-setcoursestatus"] .nav-section, .body-class-opens .nav-section, .body-loginpage .nav-section, .invalid-page .nav-section {
  margin-top: 0px;
  width: auto;
}

body[class*="php-"] .header-logo, .body-class-members .header-logo, .body-class-visitorbooking .header-logo, .body-class-getawayletter .header-logo, [class*="body-class-setcoursestatus"] .header-logo, .body-class-opens .header-logo, .body-loginpage .header-logo, .invalid-page .header-logo {
  float: left;
  margin-left: 0px;
  top: 5px;
  position: relative;
  width: 118px;
}

body[class*="php-"] .header-login, .body-class-members .header-login, .body-class-visitorbooking .header-login, .body-class-getawayletter .header-login, [class*="body-class-setcoursestatus"] .header-login, .body-class-opens .header-login, .body-loginpage .header-login {
  display: none;
}

body[class*="php-"] .header-book, .body-class-members .header-book, .body-class-visitorbooking .header-book, .body-class-getawayletter .header-book, [class*="body-class-setcoursestatus"] .header-book, .body-class-opens .header-book, .body-loginpage .header-book {
  display: none;
}

body[class*="php-"] .nav-logo, .body-class-members .nav-logo, .body-class-visitorbooking .nav-logo, .body-class-getawayletter .nav-logo, [class*="body-class-setcoursestatus"] .nav-logo, .body-class-opens .nav-logo, .body-loginpage .nav-logo {
  display: none;
}

body[class*="php-"] .nav-status, .body-class-members .nav-status, .body-class-visitorbooking .nav-status, .body-class-getawayletter .nav-status, [class*="body-class-setcoursestatus"] .nav-status, .body-class-opens .nav-status, .body-loginpage .nav-status {
  display: none;
}

body[class*="php-"] .header-status, .body-class-members .header-status, .body-class-visitorbooking .header-status, .body-class-getawayletter .header-status, [class*="body-class-setcoursestatus"] .header-status, .body-class-opens .header-status, .body-loginpage .header-status, .invalid-page .header-status {
  display: none;
}

body[class*="php-"] .header-links, .body-class-members .header-links, .body-class-visitorbooking .header-links, .body-class-getawayletter .header-links, [class*="body-class-setcoursestatus"] .header-links, .body-class-opens .header-links, .body-loginpage .header-links, .invalid-page .header-links {
  display: none;
}

body[class*="php-"] .header-right, .body-class-members .header-right, .body-class-visitorbooking .header-right, .body-class-getawayletter .header-right, [class*="body-class-setcoursestatus"] .header-right, .body-class-opens .header-right, .body-loginpage .header-right, .invalid-page .header-right {
  display: none;
}

body[class*="php-"] .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 {
  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 {
  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 {
  margin-bottom: 10px;
}

.body-class-members .navbar-inverse .nav > li {
  float: left;
  border-bottom: none;
}

.body-class-members .navbar-inverse .nav > li > a {
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0px;
  padding: 10px 15px;
}

body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, .invalid-page .header-space {
  width: 1170px;
  margin: 0px auto;
}

.body-class-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 {
  top: 5px;
}

.body-class-members .nav-wrapper {
  margin-top: 0px;
  height: auto;
  padding: 0px;
  overflow-y: visible;
  position: relative;
  top: 3px;
  margin-left: 85px;
}

.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 {
  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 {
  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"] .content-wrapper, .invalid-page .content-wrapper {
  width: 1170px;
  margin: 0px auto;
}

body[class*="php-"] #globalwrap, .body-class-visitorbooking #globalwrap, .body-class-getawayletter #globalwrap, [class*="body-class-setcoursestatus"] #globalwrap, .body-class-opens #globalwrap, .body-loginpage #globalwrap, body[class*="match"] #globalwrap, .invalid-page #globalwrap {
  margin-top: 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: 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: 110px; 
  }
  body[class*="php-"] .members-footer, .body-class-members .members-footer, .body-class-visitorbooking .members-footer, .body-class-getawayletter .members-footer, [class*="body-class-setcoursestatus"] .members-footer, .body-class-opens .members-footer, .body-loginpage .members-footer, body[class*="match"] .members-footer, .invalid-page .members-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 40px;
  }
}

/* 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(--headingcolor2);
  color: #000;
  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 {
  background: var(--headingcolor);
  color: var(--headingcolor2);
}

/* 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-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"] .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;
}

.body-class-members .header-wrapper .nav-wrapper {
  top: 20px;
}

/* desktop responsive */

@media (min-width: 1600px) and (max-width: 1799px) {
  .page-space {
    padding: 0px 150px;
  }
  .hc-space {
    padding: 20px 200px 20px 100px;
  }
  .carousel-item {
    width: 360px;
  }
  .carousel-holder {
    height: 553px;
  }
  .carousel-item img {
    height: 553px;
  }
  .ifir-medium {
    top: -270px;
    width: 620px;
  }
  .carousel-content {
    width: calc(100vw - 350px);
  }
  .no-fancy-row .ite-space, .ite-space {
    padding: 20px 125px 20px 50px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .page-space {
    padding: 0px 100px;
  }
  .hc-space {
    padding: 20px 150px 20px 75px;
  }
  .carousel-item {
    width: 330px;
  }
  .carousel-holder {
    height: 506px;
  }
  .carousel-item img {
    height: 506px;
  }
  .ifir-medium {
    top: -240px;
    width: 580px;
  }
  .ifir-small {
    width: 440px;
  }
  .carousel-content {
    width: calc(100vw - 300px);
  }
  .hole-info h4 {
    letter-spacing: 0px;
  }
  .no-fancy-row .ite-space, .ite-space {
    padding: 20px 100px 20px 40px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .page-space {
    padding: 0px 50px;
  }
  .hc-space {
    padding: 20px 100px 20px 50px;
  }
  .carousel-item {
    width: 270px;
  }
  .carousel-holder {
    height: 414px;
  }
  .carousel-item img {
    height: 414px;
  }
  .ifir-medium {
    top: -210px;
    width: 540px;
  }
  .ifir-small {
    width: 400px;
  }
  .carousel-content {
    width: calc(100vw - 250px);
  }
  .hole-info h4 {
    letter-spacing: 0px;
    text-transform: capitalize;
  }
  .no-fancy-row .ite-space, .ite-space {
    padding: 20px 75px 20px 30px;
  }
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .page-space {
    padding: 0px 25px;
  }
  .hc-space {
    padding: 20px 50px 20px 25px;
  }
  .carousel-item {
    width: 220px;
  }
  .carousel-holder {
    height: 337px;
  }
  .carousel-item img {
    height: 337px;
  }
  .ifir-medium {
    top: -170px;
    width: 500px;
  }
  .ifir-small {
    width: 360px;
  }
  .ifir-large {
    margin-left: 0px;
    width: 750px;
  }
  .carousel-content {
    width: calc(100vw - 250px);
  }
  .hole-info h4 {
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .hole-book {
    margin-bottom: 20px;
  }
  .no-fancy-row .ite-space, .ite-space {
    padding: 20px 75px 20px 30px;
  }
  .hole-nav ul li {
    margin: 0px 5px;
  }
  .hole-yards > div {
    letter-spacing: 0px;
  }
  .home-main h5 a, .inner-main h5 a, .hole-main h5 a {
    font-size: 22px;
  }
  body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, .invalid-page .header-space {
    width: 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 {
    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 {
    padding: 10px 12px;
    font-size: 14px;
  }
  .body-class-members.php-login .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 14px;
  }
  body[class*="php-"] .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-visitorbooking .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-getawayletter .navbar-inverse .nav > li.nav-haslevel-2 > a::after, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-class-opens .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .body-loginpage .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
    display: none;
  }
  .php-roundmgmt table td, .php-roundmgmt table th {
    padding: 2px;
    font-size: 12px;
  }
  #global.teebooking .tabs li a {
    font-size: 100%;
    padding: 10px;
  }
  .php-roundmgmt .dateperiods {
    width: 56%;
  }
  .php-knockout #globalwrap {
    overflow-x: scroll;
  }
  .body-class-members .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 14px;
    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) {
  .page-space {
    padding: 0px 20px;
  }
  .hc-space {
    padding: 20px;
  }
  .current-page a.active {
    font-size: 90px;
  }
  .jcarousel-end {
    font-size: 40px;
    top: -20px;
  }
  .carousel-content {
    margin-left: 150px;
    width: calc(100vw - 170px);
  }
  .carousel-item {
    width: 275px;
  }
  .carousel-holder {
    height: 422px;
  }
  .carousel-item img {
    height: 422px;
  }
  .mf-copy {
    font-size: 14px;
  }
  .pf-contact {
    font-size: 14px;
  }
  .ite-space, .no-fancy-row .ite-space {
    padding: 20px;
  }
  .ifir-medium {
    width: 325px;
    top: -150px;
  }
  .ifir-large {
    width: 500px;
    margin-left: 0px;
  }
  .ifir-small {
    width: 250px;
    bottom: 20px;
  }
  .inner-fancy-image-row {
    margin-top: 150px;
  }
  .hole-nav ul {
    width: 525px;
    margin: 0px auto;
  }
  .hole-flex {
    flex-wrap: wrap;
  }
  .hole-info {
    width: 48%;
  }
  .hole-map {
    width: 48%;
    margin: 0px 0px 0px 25px;
  }
  .hole-video {
    width: 80%;
    margin: 50px auto 0px;
  }
  .hole-video iframe {
    border-radius: 30px;
  }
  .page-space.no-right-space {
    padding-right: 20px;
  }
  #home-logo-slide {
    width: 200px;
    margin: 0px auto;
    top: -600px;
    left: 0px;
    right: 0px;
  }
  #home-logo-slide img {
    width: 200px;
  }
  .inner-nav ul li a {
    font-size: 14px;
  }
  body[class*="php-"] .header-space, .body-class-members .header-space, .body-class-visitorbooking .header-space, .body-class-getawayletter .header-space, [class*="body-class-setcoursestatus"] .header-space, .body-class-opens .header-space, .body-loginpage .header-space, body[class*="match"] .header-space, .invalid-page .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"] .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;
  }
  .php-courseanalysis table td, .php-courseanalysis table th {
    font-size: 12px;
    padding: 2px;
  }
}

/* portrait tablet and mobile */

@media (min-width: 0px) and (max-width: 979px) {
  .home-slideshow .galleryInner, .home-slideshow .galleryInner img {
    height: auto !important;
    min-height: 200px;
    object-fit: cover;
  }
  .home-page-wrapper, .inner-page-wrapper, .hole-page-wrapper {
    padding-top: 80px;
  }
  .page-scroll {
    display: none;
  }
  .header-links {
    top: 30px;
    left: 20px;
  }
  #hamburger-icon {
    top: 0px;
    right: 0px;
  }
  .header-wrapper {
    background: #000;
  }
  .body-public.body-class-home .header-logo, .body-public.body-contentpage .header-logo, .body-public.body-class- .header-logo {
    top: 5px;
  }
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #fff;
    font-weight: 400;
  }
  .nav-collapse .dropdown-menu {
    background: var(--dropdownbg);
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .dropdown-menu a:focus, .navbar-inverse .nav-collapse .nav > li.current > a, .navbar-inverse .nav-collapse .dropdown-menu > li.current > a {
    color: var(--headingcolor2);
  }
  body[class*="php-"] #hamburger-icon, .body-class-visitorbooking #hamburger-icon, .body-class-getawayletter #hamburger-icon, [class*="body-class-setcoursestatus"] #hamburger-icon, .body-class-opens #hamburger-icon, .body-loginpage #hamburger-icon, .body-class-members #hamburger-icon, .invalid-page #hamburger-icon {
    display: block;
    top: 5px;
    position: absolute;
  }
  .body-class-members .nav-wrapper {
    top: 0px;
    margin-top: 10px;
    margin-left: 0px;
  }
  body[class*="php-"] .navbar-inverse .nav > li, .body-class-visitorbooking .navbar-inverse .nav > li, .body-class-getawayletter .navbar-inverse .nav > li, [class*="body-class-setcoursestatus"] .navbar-inverse .nav > li, .body-class-opens .navbar-inverse .nav > li, .body-loginpage .navbar-inverse .nav > li, .body-class-members .navbar-inverse .nav > li, .invalid-page .navbar-inverse .nav > li {
    float: none;
  }
  .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
    right: 2px;
  }
  body[class*="php-"] .dropdown-menu, .body-class-members .dropdown-menu, .body-class-visitorbooking .dropdown-menu, .body-class-getawayletter .dropdown-menu, [class*="body-class-setcoursestatus"] .dropdown-menu, .body-class-opens .dropdown-menu, .body-loginpage .dropdown-menu, .invalid-page .dropdown-menu {
    position: relative;
  }
  .body-class-members .header-wrapper .nav-wrapper {
    top: 0px;
  }
  .nav-wrapper {
    margin-top: 90px;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .page-space {
    padding: 0px 20px;
  }
  .header-links {
    left: 10px;
    top: 20px;
  }
  .header-links a.visit-book {
    display: block;
    margin: 5px 0px;
  }
  .menu-open {
    left: 70px;
  }
  .menu-close {
    left: 70px;
  }
  .hc-space {
    padding: 0px 20px;
  }
  #hamburger-icon {
    width: 130px;
  }
  .home-equal.flip-flex {
    flex-direction: column;
    text-align: center;
    margin: 60px 0px;
  }
  .home-equal-content {
    width: 100%;
  }
  .home-equal-pic {
    width: 100%;
  }
  .home-equal-pic img {
    max-width: 400px;
    width: 100%;
  }
  .carousel-bar {
    display: none;
  }
  .experiences-counter {
    width: 100%;
    position: relative;
    top: 0px;
    transform: translateY(0px);
    margin: 50px 0px 40px;
    text-align: center;
  }
  .carousel-wrapper {
    margin-top: 0px;
  }
  .carousel-holder {
    height: 322px;
  }
  .carousel-item img {
    height: 322px;
  }
  .carousel-content {
    width: 460px;
    margin: 0px auto;
  }
  .carousel-item {
    width: 210px;
  }
  .home-equal {
    flex-direction: column;
    text-align: center;
  }
  .home-main h5 a, .inner-main h5 a, .hole-main h5 a {
    font-size: 16px;
    line-height: 40px;
  }
  .hfp-pic img {
    min-height: 150px;
    object-fit: cover;
  }
  .hfp-content h2 {
    font-size: 28px;
    line-height: 38px;
    margin: 0px 0px 5px;
  }
  .hfp-content p {
    font-size: 14px;
    line-height: 24px;
  }
  .page-space.no-right-space {
    padding-right: 20px;
  }
  .hole-flex {
    flex-direction: column;
    margin: 50px 0px;
  }
  .hole-info {
    width: auto;
    text-align: center;
  }
  .hole-yards > div {
    width: 245px;
    margin: 0px auto 10px;
    text-align: left;
  }
  .hole-map {
    width: auto;
    margin: 30px 0px;
  }
  .hole-map img {
    max-width: 200px;
  }
  .hole-video {
    width: 95%;
    margin: 0px auto;
  }
  .hole-video iframe {
    border-radius: 30px;
  }
  .public-footer {
    padding: 60px 0px 0px;
    text-align: center;
  }
  .pf-flex {
    flex-direction: column;
  }
  .pf-contact {
    width: auto;
    margin-right: 0px;
  }
  .pf-newsletter {
    width: auto;
    margin-left: 0px;
    margin-top: 20px;
  }
  .mf-flex {
    flex-direction: column;
    text-align: center;
  }
  .mf-copy {
    width: auto;
    margin: 0px;
    padding: 0px;
  }
  .mf-ig-logo {
    text-align: center;
    margin-top: 10px;
    width: auto;
  }
  .inner-slide-logo {
    display: none;
  }
  .inner-nav ul li {
    display: block;
    margin: 5px 0px;
  }
  .inner-nav ul li a {
    display: block;
    padding: 5px 10px;
    border: 2px solid #bbb;
  }
  .inner-two-equal, .inner-two-equal.flip-flex {
    flex-direction: column;
  }
  .inner-main {
    text-align: center;
  }
  .ite-space {
    padding: 0px 20px;
  }
  .ite-col {
    width: auto;
    margin: 0px;
  }
  .flip-flex .ite-col {
    margin: 0px;
  }
  .ite-pic {
    margin: 30px 0px 0px;
    width: auto;
  }
  .flip-flex .ite-pic {
    margin: 30px 0px 0px;
  }
  .ite-pic img {
    max-width: 400px;
    margin: 0px auto;
    width: 100%;
  }
  .inner-fancy-image-row {
    margin-top: 40px;
  }
  .ifir-large {
    margin: 0px auto 20px;
    width: 100%;
    max-width: 400px;
  }
  .ifir-medium {
    position: relative;
    top: 0px;
    max-width: 400px;
    width: 100%;
    left: 0px;
    right: 0px;
    margin: 0px auto;
  }
  .ifir-small {
    max-width: 400px;
    width: 100%;
    bottom: 0px;
    position: relative;
    left: 0px;
    right: 0px;
    margin: 20px auto 0px;
  }
  .hole-nav {
    position: relative;
    background: #f3f3f3;
    padding: 5px;
    bottom: 0px;
    left: 0px;
    right: 0px;
  }
  .hole-nav ul {
    width: 320px;
    margin: 0px auto;
  }
  .hole-nav ul li {
    margin: 0px 5px;
  }
  .hole-nav ul li a {
    text-shadow: none;
    color: var(--bodycolor);
  }
  .hole-nav ul li a:hover, .hole-nav ul li a:focus, .hole-nav ul li.current a {
    color: var(--headingcolor);
  }
  .inner-full h1 {
    font-size: 44px;
    line-height: 54px;
  }
  .no-fancy-row .ite-space {
    padding: 0px 20px;
  }
  .scorecard-content {
    overflow-x: scroll;
  }
  /*.home-main h5 a::before, .inner-main h5 a::before, .hole-main h5 a::before {
    float: left;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background-image: url('/images/resources/doha/link-arrow.png');
    content: '';
    background-size: contain;
  }*/
  .three-equal-added.flex-row {
    flex-direction: column;
  }
  .three-equal-added.flex-row .ie-col:first-child {
    margin-right: 0px;
  }
  .three-equal-added.flex-row .ie-col:nth-child(2) {
    margin: 30px 0px;
  }
  .three-equal-added.flex-row .ie-col:last-child {
    margin-left: 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"] .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"] .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-top: 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;
  }
  .experiences-title {
    text-align: center;
  }
}

/* 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: -500px;
  }
  .carousel-holder {
    height: 490px;
  }
  .carousel-item img {
    height: 490px;
  }
  .carousel-content {
    width: 320px;
    margin: 0px auto;
  }
  .carousel-item {
    width: 320px;
  }
}

/* custom page templates */

.body-public .added-section-move-up {
  display: none;
}

.body-public .added-section-move-down {
  display: none;
}

.body-public .additional-button-row {
  display: none;
}

.body-public .added-section-remove {
  display: none;
}

.inserted-block {
  position: relative;
  padding: 25px 0px; /* change this padding to increase / decrease the gap between added sections */
}

.inserted-block.no-space {
  padding: 0px;
}

.php-ckeditor .inserted-block.no-space {
  padding: 25px 0px;
}

.added-section-remove {
  position: absolute;
  top: -2px;
  right: 0px;
  width: 30px;
  height: 30px;
}

.added-section-remove .asr-cross {
  width: 30px;
  height: 2px;
  background: #f00;
  content: '';
  display: inline-block;
}

.added-section-remove:hover, .added-section-remove:focus {
  cursor: pointer;
}

.added-section-remove .asr-cross-1 {
  transform: rotate(45deg);
  position: absolute;
  top: 13px;
  left: 0px;
}

.added-section-remove .asr-cross-2 {
  transform: rotate(-45deg);
  position: absolute;
  top: 13px;
  left: 0px;
}

.added-section-move-up {
  position: absolute;
  top: -2px;
  right: 100px;
  font-size: 24px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.added-section-move-up:hover {
  cursor: pointer;
}

.added-section-move-down {
  position: absolute;
  top: -2px;
  right: 50px;
  font-size: 24px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.added-section-move-down:hover {
  cursor: pointer;
}

.php-ckeditor .ig-wysiwyg-editor-navbar .navbar-inverse .navbar-inner {
  background: #000;
  padding: 6px 0px;
}

.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 {
  display: none;
}

.php-ckeditor .additional-boxes .inserted-block:last-child .added-section-move-down {
  display: none;
}

.php-ckeditor .extra-nav {
  position: fixed;
  top: 47px;
  background: #000;
  padding: 5px 0px;
  width: 100%;
  z-index: 100;
}

.php-ckeditor .extra-nav a {
  display: inline-block;
  padding: 5px 10px;
  background: var(--headingcolor2);
  margin-right: 5px;
  color: #000;
  font-size: 13px;
  text-decoration: none;
}

.php-ckeditor .extra-nav a:hover, .php-ckeditor .extra-row a:focus {
  background: #fff;
  color: #000;
  cursor: pointer;
}

.php-ckeditor .extra-nav-tooltip i {
  color: var(--headingcolor2);
  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 {
  display: none;
}

.php-ckeditor .page-scroll {
  display: none;
}

.php-ckeditor .inner-slide-logo {
  position: relative;
  top: 0px;
  margin: 10px 0px;
}

.php-ckeditor .hole-nav {
  position: relative;
  bottom: 0px;
}

.php-ckeditor .scorecard-content {
  display: block;
}

.php-ckeditor .carousel-holder {
  height: auto;
}

.php-ckeditor .carousel-wrapper {
  position: relative;
  width: auto;
}

.php-ckeditor .carousel-item {
  float: left;
}

.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;
}

/* invalid page */

.invalid-page {
  background: url('/images/resources/doha/latest-members-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.invalid-page #globalwrap h3::before {
  content: '\f071';
  font-family: 'FontAwesome';
  margin-right: 10px;
}

.invalid-page .header-space {
  width: 1170px;
  margin: 0px auto;
  position: relative;
}

.body-public.body-contentpage.invalid-page .header-logo {
  display: block;
  top: 5px;
  left: 0px;
  right: auto;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .invalid-page .header-space {
    width: 940px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .invalid-page .header-space {
    width: 724px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .invalid-page .header-space {
    width: auto;
    margin: 0px 10px;
  }
}

/* visitor tee login */

@media (min-width: 768px) {
  .php-teelogin #globalwrap .row {
    width: 100%;
    margin-left: 0px;
  }
  .php-teelogin #globalwrap .row .span6:first-child {
    width: 48%;
    margin-left: 0px;
  }
  .php-teelogin #globalwrap .row .span6:last-child {
    width: 48%;
    margin-left: 2%;
  }
}

.teebooking #paymentbar {
  float: none;
  text-align: right;
  width: auto;
}

@media (min-width: 0px) and (max-width: 767px) {
  .teebooking #paymentbar {
    margin-top: 15px;
    text-align: left;
  }
  .teebooking #cancelbar {
    float: none;
  }
}

/* tee time home page fixes */

.php-index #globalwrap > .global {
  background: rgba(255,255,255,0.8);
  padding: 20px;
  border: 2px solid var(--headingcolor);
}

.php-index #globalwrap > .global #myupcoming {
  border: none;
  box-shadow: none;
}

/* google maps */

#map_container {
  width: 100% !important;
}

.gm-style-iw-d {
  max-height: 240px !important;
}

.gm-style .gm-style-iw-c {
    padding-right: 12px !important;
}

.php-login #emailresetform input[type*="text"] {
  margin-bottom: 0px;
}

.body-class-setcoursestatus input[type*="submit"], .php-search input[type*="submit"], .php-login #emailresetform input[type*="submit"]  {
  padding: 5px 12px;
}

/* slideshow titles */

.content-wrapper [class*="-slideshow"] .nivo-caption {
  display: block;
}

.content-wrapper [class*="-slideshow"] .nivo-caption {
  background: transparent;
  opacity: 1;
  text-align: center;
  bottom: 120px;
  z-index: 12;
}

.content-wrapper [class*="-slideshow"] .nivo-caption h4 {
  color: #ffdc71;
  font-family: var(--headingfont);
  display: inline-block;
  padding: 0px 15px;
  margin: 0px;
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
  text-shadow: 1px 1px #000;
}

.content-wrapper [class*="slideshow"] .nivo-caption p {
  color: white;
  text-shadow: 1px 1px #000;
}

@media (min-width: 0px) and (max-width: 979px) {
  #globalwrap [class*="-slideshow"] .nivo-caption {
    bottom: 10px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  #globalwrap [class*="-slideshow"] .nivo-caption {
    bottom: 10px;
  }
  #globalwrap [class*="-slideshow"] .nivo-caption h4 {
    font-size: 16px;
    line-height: 24px;
  }
}

/* forms */

.inner-page-wrapper form input {
  background: #eee;
  border-radius: 0px;
  border: 2px solid var(--headingcolor);
  height: 30px;
  width: 80%;
  text-align: center;
}

.inner-page-wrapper form textarea {
  background: #eee;
  border-radius: 0px;
  border: 2px solid var(--headingcolor);
  height: 90px;
  width: 80%;
  text-align: center;
}

.inner-page-wrapper form select {
  background: #eee;
  border-radius: 0px;
  border: 2px solid var(--headingcolor);
  height: 30px;
  width: 80%;
  box-sizing: content-box;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-page-wrapper form input {
    width: 80%;
  }
  .inner-page-wrapper form textarea {
    width: 80%;
  }
  .inner-page-wrapper form select {
    width: 80%;
  }
}

.inner-page-wrapper form img.ui-datepicker-trigger {
  display: none;
}

.inner-page-wrapper form input[type*="submit"] {
  width: auto;
  height: auto;
  background: var(--headingcolor2);
  color: #000;
  margin-top: 20px;
  border: none;
  padding: 10px 15px;
}

.inner-page-wrapper form input[type*="submit"]:hover {
  background: var(--headingcolor);
  color: var(--headingcolor2);
}

.inner-full-added ul, .inner-col ul, .inner-full ul, .ife-content-col ul, .ite-col ul {
  margin: 0px 0px 10px;
}

.inner-full-added ul li, .inner-col ul li, .inner-full ul li, .ife-content-col ul li, .ite-col ul li {
  line-height: 28px;
  list-style: none;
}

.inner-full-added ul li::before, .inner-col ul li::before, .inner-full ul li::before, .ife-content-col ul li::before, .ite-col ul li::before {
  content: '\f111';
  font-family: 'FontAwesome';
  font-size: 7px;
  margin-right: 6px;
  color: var(--headingcolor);
  position: relative;
  top: -3px;
}

.inner-full-added .gallery-thumbs ul li::before, .inner-full .gallery-thumbs ul li::before, .ite-col .gallery-thumbs ul li::before {
  display: none;
}

.inner-full-added ol, .inner-full ol, .ite-col ol {
  margin: 0px 0px 10px;
}

.inner-full-added ol li, .inner-full ol li, .ite-col ol li {
  line-height: 28px;
  list-style-position: inside;
}

.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;
  }
}

@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;
  }
  .body-class-find_us .ite-pic {
    width: 100%;
  }
}

.inner-main table th, .inner-full table th {
  border: 2px solid var(--headingcolor);
  padding: 6px;
  font-weight: 400;
  background: var(--headingcolor);
  color: #fff;
}

.inner-main table td, .inner-flfullex table td {
  border: 2px solid var(--headingcolor);
  padding: 6px;
}

@media (min-width: 768px) and (max-width: 979px) {
  .inner-main table th {
    padding: 4px;
    font-size: 14px;
  }
  .inner-main table td {
    padding: 4px;
    font-size: 14px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-main table th {
    padding: 2px;
    font-size: 12px;
  }
  .inner-main table td {
    padding: 2px;
    font-size: 12px;
  }
}

[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 */

.content-wrapper [class*="-slideshow"] .nivo-directionNav {
  display: none !important;
}

.content-wrapper [class*="-slideshow"] .nivo-controlNav-Wrapper {
  display: none !important;
  position: absolute;
  left: auto;
  right: 30px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 20;
  width: 12px;
}

.content-wrapper [class*="-slideshow"] .nivo-controlNav-Wrapper .nivo-controlNav {
  padding: 0px;
  line-height: 20px;
}

.content-wrapper [class*="-slideshow"] .nivo-controlNav-Wrapper a {
  width: 8px;
  height: 8px;
  margin: 0px;
  border-radius: 50%;
  background: #fff;
}

.content-wrapper [class*="-slideshow"] .nivo-controlNav-Wrapper a.active {
  width: 12px;
  height: 12px;
}

@media (min-width: 768px) and (max-width: 979px) {
  .hole-nav {
    bottom: 10px;
  }
}

/* scroll to top */

.scrollTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
}

.scrollTop a {
  opacity: 0;
  background-color: var(--headingcolor);
  border: 2px solid var(--headingcolor);
  border-radius: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: var(--headingcolor2);
  display: inline-block;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.scrollTop a i {
  font-size: 20px;
  margin-top: 7px;
}

.scrollTop a:hover {
  background: var(--headingcolor2);
  color: var(--headingcolor);
  cursor: pointer;
}

@media (min-width: 0px) and (max-width: 767px) {
  .scrollTop {
    right: 5px;
    bottom: 5px;
  }
  .scrollTop a {
    width: 28px;
    height: 28px;
  }
  .scrollTop a i {
    font-size: 14px;
    margin-top: 4px;
  }
}

/* home slideshow animation */

@-webkit-keyframes imgpan {
  from {transform: scale(1,1);}
  to {transform: scale(1.05,1.05);}
}

@keyframes imgpan {
  from {transform: scale(1,1);}
  to {transform: scale(1.05,1.05);}
}

.home-slideshow .galleryInner img {
  animation-name: imgpan;
  -webkit-animation-name: imgpan;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@media (min-width: 980px) {
  .body-public .home-section-one {
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: 50% 0%;
    transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    opacity: 0;
    overflow: hidden;
  }
  .body-public .home-section-one.flip {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  .body-public .home-section-two {
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: 50% 0%;
    transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    opacity: 0;
    overflow: hidden;
  }
  .body-public .home-section-two.flip {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  .body-public .home-section-three {
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: 50% 0%;
    transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    opacity: 0;
    overflow: hidden;
  }
  .body-public .home-section-three.flip {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  .body-public .home-section-four {
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: 50% 0%;
    transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    opacity: 0;
    overflow: hidden;
  }
  .body-public .home-section-four.flip {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  .body-public .home-section-five {
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: 50% 0%;
    transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    opacity: 0;
    overflow: hidden;
  }
  .body-public .home-section-five.flip {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  .body-public .home-section-six {
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: 50% 0%;
    transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    opacity: 0;
    overflow: hidden;
  }
  .body-public .home-section-six.flip {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  .body-public .home-section-seven {
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: 50% 0%;
    transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    opacity: 0;
    overflow: hidden;
  }
  .body-public .home-section-seven.flip {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
}

.body-public .teebooking .picker p.noprint {
  color: #fff;
}

.php-ongoing p a.btn {
  margin: 5px 0px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .php-myeposaccount #statements button.btn {
    padding: 4px;
    font-size: 12px;
  }
  #cluetip-outer input[type*="submit"] {
    font-size: 13px;
    padding: 6px 2px;
  }
}

.php-ckeditor .hc-space, .php-ckeditor .itc-space {
  padding: 20px;
}

.php-ckeditor .carousel-item {
  width: 270px;
}

.php-ckeditor .page-space {
  padding: 0px;
}

.php-ckeditor .jcarousel-next {
  display: none;
}

.php-ckeditor .carousel-content {
  width: auto;
}

.php-ckeditor .no-fancy-row .ite-space, .php-ckeditor .ite-space {
  padding: 0px;
}

.php-ckeditor .ig-wysiwyg-editor-navbar .span6 {
  font-size: 12px;
}

.php-ckeditor .inner-fancy-image-row {
  margin-top: 300px;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .carousel-item-content h4 {
    font-size: 26px;
    line-height: 36px;
  }
  .carousel-item-content h5 {
    font-size: 26px;
    line-height: 36px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .body-class-summer_2023_1 .ite-space {
    padding: 0px;
  }
  .body-class-summer_2023_1 .ite-space table td {
    font-size: 12px;
    padding: 2px;
  }
  .body-class-summer_2023_1 .ite-space table th {
    font-size: 12px;
    padding: 2px;
  }
}

.teebooking .picker {
  color: #fff;
}

.body-public .dropdown-menu > li > a {
  white-space: normal;
}

.body-public .inner-nav .wysiwyg-editable > br {
  display: none;
}

.body-public .included-carousel-block-area .wysiwyg-editable > br {
  display: none;
}

.membership-carousel .experiences-counter, .membership-carousel .carousel-bar, .membership-carousel .jcarousel-next {
  display: none;
}

.academy-carousel .carousel-bar a {
  width: 14%;
}

@media (min-width: 0px) and (max-width: 768px) {
  .body-public .teebooking .picker p.noprint {
    color: #000;
  }
}

@media (min-width: 768px) {
  .pf-logos {
    display: flex;
  }
  .pf-logos .wysiwyg-editable {
    display: inline-block;
    margin: 0px auto;
  }
  .pf-logos .inserted-block {
    width: 120px;
    margin: 0px 10px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  table th h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 5px 0px;
  }
  .pf-logos .additional-boxes {
    flex-direction: column;
  }
  .pf-logos .inserted-block {
    margin: 15px 0px;
  }
}

.body-class-proshop table td img {
  width: 100%;
}

.body-class-doha_golf_club_course_rating_charts .inner-full-added table tr:nth-child(5) td:nth-child(1), .body-class-doha_golf_club_course_rating_charts .inner-full-added table tr:nth-child(5) td:nth-child(5) {
  color: white;
}

.body-class-doha_golf_club_course_rating_charts .inner-full-added table tr:nth-child(8) td:nth-child(1), .body-class-doha_golf_club_course_rating_charts .inner-full-added table tr:nth-child(8) td:nth-child(5) {
  color: white;
}

.body-class-doha_golf_club_course_rating_charts .inner-full-added table tr:nth-child(12) td:nth-child(1), .body-class-doha_golf_club_course_rating_charts .inner-full-added table tr:nth-child(12) td:nth-child(5) {
  color: white;
}

.body-class-doha_golf_club_course_rating_charts .inner-full-added table tr:nth-child(14) td:nth-child(1), .body-class-doha_golf_club_course_rating_charts .inner-full-added table tr:nth-child(14) td:nth-child(5) {
  color: white;
}

.body-class-club_news .news-wrapper, .home-page-wrapper .news-wrapper {
  display: flex;
  margin-top: 40px;
}

.body-class-club_news .news-item, .home-page-wrapper .news-item {
  flex: 1 1 0;
  text-align: center;
  margin: 0px 15px;
}

.body-class-club_news .news-wrapper .media .pull-left, .home-page-wrapper .news-wrapper .media .pull-left  {
  float: none;
  margin: 0px auto;
}

.body-class-club_news .news-wrapper .media img, .home-page-wrapper .news-wrapper .media img {
  padding: 0px;
  border: none;
  box-shadow: none;
  margin: 0px auto 20px;
  height: 300px;
  max-height: 300px;
  object-fit: cover;
  width: 100%;
  max-width: 370px;
}

@media (min-width: 768px) and (max-width: 979px) {
  .body-class-club_news .news-wrapper .media img, .home-page-wrapper .news-wrapper .media img  {
    height: 230px;
    max-height: 230px;
  }
  .body-class-club_news .news-wrapper h4, .home-page-wrapper .news-wrapper h4 {
    font-size: 20px;
  }
  .body-class-club_news .news-date, .home-page-wrapper .news-date {
    font-size: 14px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .body-class-club_news .news-wrapper, .home-page-wrapper .news-wrapper {
    flex-direction: column;
  }
  .body-class-club_news .news-wrapper .media img, .home-page-wrapper .news-wrapper .media img {
    height: 230px;
    max-height: 230px;
    max-width: 300px;
  }
  .body-class-club_news .news-item, .home-page-wrapper .news-item {
    margin: 15px 0px;
  }
}

.home-news {
  padding: 60px 0px;
  text-align: center;
}

.home-news h2 {
  font-size: 46px;
  line-height: 56px;
  margin: 0px 0px 40px;
}

.pf-social a:nth-of-type(2) {
  position: relative;
}

.pf-social a img {
  position: relative;
  top: -1px;
}

.pf-social a:nth-of-type(2)::after {
  content: '';
  background-image: url('/images/resources/doha/doha-hover-x-logo.png');
  background-size: 19px, 20px;
  background-repeat: no-repeat;
  position: absolute;
  top: 3px;
  left: 0px;
  width: 19px;
  height: 20px;
  z-index: 8;
  display: inline-block;
  opacity: 0;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.pf-social a:nth-of-type(2):hover::after {
  opacity: 1;
}

.header-links a:nth-of-type(2) {
  position: relative;
}

.header-links a:nth-of-type(2)::after {
  content: '';
  background-image: url('/images/resources/doha/doha-hover-x-logo.png');
  background-size: 14px, 15px;
  background-repeat: no-repeat;
  position: absolute;
  top: 4.75px;
  left: 0px;
  width: 14px;
  height: 15px;
  z-index: 8;
  display: inline-block;
  opacity: 0;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.header-links a:nth-of-type(2):hover::after {
  opacity: 1;
}

.gallery-thumbs .bottom.pagination {
  display: none;
}

.gallery-thumbs .pagination a {
  background: var(--headingcolor2);
  color: #fff;
}

.gallery-thumbs .pagination a:hover {
  background: var(--headingcolor);
  color: var(--headingcolor2);
}

@media (min-width: 0px) and (max-width: 979px) {
  .php-competition2 table.comps-list-table .comp-ical-td, .body-class-opens table.comps-list-table .comp-ical-td {
    top: 50px;
  }
}

.home-slideshow video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

@media (min-width: 0px) and (max-width: 979px) and (orientation: portrait) {
  .home-slideshow video {
    height: 50vh;
  }
}

.body-public .nav > li.nav-menu-visitor_index {
  display: none;
}

/* end anton styles */

.php-myeposaccount span.links, .php-mobile_topup .button-container > span, .php-mobile_topup .title:first-of-type  {
  display:none;
}

.teebooking-wrapper .weather-wrapper > div:first-of-type {
  display:none;
}

.teebooking-wrapper .suntimes {
  border-left:none;
}