/* anton styles */

/* fonts */

.eb-garamond-font {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* variables */

:root {
  --bodyfont: 'EB Garamond', serif;
  --headingfont: 'EB Garamond', serif;
  --headingcolor: #12252d;
  --headingcolor2: #12252d;
  --highlightcolor: #156275;
  --linkhover: #8b8d8d;
  --buttonhighlight: #12252d;
  --bodycolor: #171717;
  --headerbg: #12252d;
  --navbg: #12252d;
  --footerbg: #12252d;
  --footertext: #fff;
  --navlink: #d1dbbd;
  --navactivelink: #fff;
}

.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: 50px;
  line-height: 60px;
  color: var(--headingcolor);
  margin-bottom: 30px;
  font-family: var(--headingfont);
}

h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

h4 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: var(--headingcolor);
  margin-bottom: 20px;
  font-family: var(--headingfont);
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--headingcolor);
  margin-bottom: 20px;
  font-family: var(--headingfont);
}

h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--headingcolor);
  font-family: var(--headingfont);
}

h5 a, h6 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: var(--headingcolor);
  color: #fff;
  display: inline-block;
  padding: 10px 30px;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--bodyfont);
  text-transform: uppercase;
  border-radius: 0px;
  margin-top: 10px;
  position: relative;
  text-decoration: none;
}

.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: #000;
  color: #fff;
  text-decoration: none;
}

a {
  color: var(--highlightcolor);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

a:hover, a:focus {
  color: var(--highlightcolor);
  text-decoration: underline;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* header */

.header-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  background: var(--headerbg);
  height: 100%;
  width: 70px;
  z-index: 1001;
  -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.15);
  box-shadow: 0 0 2px 2px rgba(0,0,0,.15);
}

.header-space {
  padding-top: 20px;
}

.header-logo {
  width: 40px;
  position: absolute;
  bottom: 30px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
}

/* nav */

@media (min-width: 980px) {
  .nav-section {
    position: relative;
  }
  #hamburger-icon {
    width: 70px;
    height: 40px;
    background: transparent;
    border: none;
    box-shadow: none;
    position: absolute;
    z-index: 1002;
  }
  #hamburger-icon .line {
    position: absolute;
    height: 3px;
    display: inline-block;
    background: #fff;
    left: 24px;
    width: 22px;
    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: 14px;
  }
  #hamburger-icon .line-2 {
    top: 20px;
  }
  #hamburger-icon .line-3 {
    top: 26px;
  }
  #hamburger-icon:hover .line-1 {
    top: 12px;
  }
  #hamburger-icon:hover .line-3 {
    top: 28px;
  }
  .show-menu #hamburger-icon .line-1 {
    top: 20px;
    transform: rotate(-45deg);
  }
  .show-menu #hamburger-icon .line-2 {
    opacity: 0;
  }
  .show-menu #hamburger-icon .line-3 {
    top: 20px;
    transform: rotate(45deg);
  }
  #myNavbar {
    position: fixed;
    top: 0px;
    left: -290px;
    min-height: 100vh;
    background: var(--navbg);
    width: 290px;
    z-index: 1000;
    -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.15);
    box-shadow: 0 0 2px 2px rgba(0,0,0,.15);
    transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
  }
  .show-menu #myNavbar {
    left: 0px;
  }
  .nav-wrapper {
    margin-top: 50px;
    padding: 0px 0px 50px;
    height: calc(100vh - 100px);
    overflow-y: auto;
    text-align: center;
    transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
  }
  .navbar {
    margin: 0px;
  }
  .navbar .nav {
    float: none;
    margin: 0px;
  }
  .nav-logo {
    text-align: center;
    width: 122px;
    margin: 0px auto 50px;
  }
  .navbar .nav > li {
    float: none;
    background: transparent;
    border-radius: 0px;
    display: block;
    position: relative;
  }
  .navbar-inverse .nav > li > a {
    text-shadow: none;
    color: var(--navlink);
    font-size: 18px;
    letter-spacing: 4px;
    padding: 10px 20px;
    text-transform: uppercase;
  }
  .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
    position: absolute;
    content: '\f067';
    font-family: 'FontAwesome';
    right: 10px;
    top: 11px;
    font-size: 12px;
    transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -webkit-transition: all 100ms ease-in-out;
  }
  .navbar-inverse .nav > li.nav-haslevel-2.open > a::after {
    content: '\f068';
  }
  .navbar-inverse .nav > li.current > a, .navbar-inverse .nav > li > a:hover, .navbar-inverse .nav > li > a:focus {
    color: var(--navactivelink);
    text-decoration: none;
  }
  .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;
  }
  .navbar .nav > li > .dropdown-menu::before, .navbar .nav > li > .dropdown-menu::after {
    display: none;
  }
  .dropdown-menu {
    background: var(--dropdownbg);
    position: relative;
    border-radius: 0px;
    box-shadow: none;
    float: none;
    border: none;
  }
  .dropdown-menu > li {
    border-radius: 0px;
  }
  .dropdown-menu > li:last-of-type {
    border-bottom: none;
  }
  .dropdown-menu > li > a {
    color: var(--navlink);
    padding: 5px 10px;
    font-size: 21px;
    letter-spacing: 0px;
  }
  .dropdown-menu > li.current > a, .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background: transparent;
    color: var(--navactivelink);
    text-decoration: none;
  }
  .nav-social {
    margin-top: 60px;
  }
  .nav-social a {
    color: #fff;
    font-size: 24px;
  }
  .nav-social a:nth-of-type(2) {
    margin: 0px 6px;
  }
  .nav-social a:hover, .nav-social a:focus {
    color: #046F72;
  }
  .nav-buttons {
    margin-top: 45px;
  }
  .nav-buttons a {
    display: inline-block;
    background: #156275;
    color: #fff;
    padding: 0px 29px;
    height: 47px;
    line-height: 47px;
    border: 1px solid #fff;
    border-radius: 90px;
    font-weight: 800;
    width: 120px;
    margin-bottom: 45px;
  }
  .nav-buttons a:hover, .nav-buttons a:focus {
    color: var(--headingcolor);
    text-decoration: none;
  }
  .body-public .member-book {
    display: none;
  }
  .body-class-members .visit-book {
    display: none;
  }
  .nav-end-logo {
    width: 210px;
    margin: 0px auto;
  }
}

/* footer */

.footer {
  background: var(--footerbg);
  color: var(--footertext);
  text-align: center;
  padding: 60px 0px;
}

.footer-space {
  padding: 0px 80px;
}

.footer-logo {
  width: 200px;
  margin: 0px auto;
}

.footer-social {
  margin-top: 32px;
}

.footer-social a {
  display: inline-block;
  background: #fff;
  color: var(--footerbg);
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  text-align: center;
  border-radius: 50%;
  margin-right: 5px;
}

.footer-social a:last-of-type {
  margin-right: 0px;
}

.footer-social a:hover, .footer-social a:focus {
  background: #31C8A2;
  color: #fff;
}

.footer-address {
  margin-top: 32px;
  font-size: 20px;
  line-height: 31px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-copy {
  margin-top: 32px;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 1px;
}

.footer-copy a {
  text-decoration: underline;
  color: #fff;
}

.footer-copy .fc-line {
  content: '';
  display: inline-block;
  width: 2px;
  height: 18px;
  background: #fff;
  margin: 0px 5px;
  position: relative;
  top: 4px;
}

.footer-ig {
  margin-top: 16px;
}

.footer-ig img {
  width: 120px;
}

/* members */

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/crieff/members-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.content-wrapper {
  width: 1040px;
  margin: 0px auto;
}

#globalwrap {
  margin-top: 130px;
  margin-bottom: 60px;
  border: 2px solid var(--headingcolor2);
  padding: 20px;
  background: rgba(255,255,255,0.9);
}

.body-class-members #container #globalwrap {
  margin-top: 130px;
  margin-bottom: 60px;
  border: 2px solid var(--headingcolor2);
  padding: 20px;
  background: rgba(255,255,255,0.9);
}

/* login page */

#login {
  text-align: center;
}

#login h3 {
  margin: 0px 0px 20px;
  padding-bottom: 10px;
}

#login fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  display: inline-block;
  transform: translateX(-90px);
}

#login input[type*="submit"] {
  margin-top: 20px;
  letter-spacing: 2px;
  font-size: 16px;
}

#login > div {
  padding-bottom: 0px !important;
}

/* buttons */

input[type*="submit"], a.btn, button.btn {
  display: inline-block;
  text-shadow: none;
  background: var(--highlightcolor);
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  margin: 2px;
   transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

input[type*="submit"]:hover, a.btn:hover, button.btn:hover, input[type*="submit"]:focus, a.btn:focus, button.btn:focus {
  background: var(--buttonhighlight);
  color: #fff;
}

/* no pin page */

.php-login.body-class-members .nav > li.nav-menu-login\.php {
  display: none;
}

.php-login.body-class-members .nav > li.nav-menu-competition\.php, .php-login.body-class-members .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(--headingcolor2);
  position: relative;
}

.php-index #globalwrap .weatherMini {
  position: absolute;
  top: 2px;
  right: 2px;
}

.php-index #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-index #globalwrap .weatherImage img {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-weatherfg #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-weatherfg #globalwrap .weatherImage img, .php-weatherfg #globalwrap .weatherImage img.image-night {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-index #globalwrap .weatherImage i {
  font-size: 28px;
}

.php-analysis .content-wrapper .pull-left, .php-courseanalysis .content-wrapper .pull-left {
  float: none;
}

.php-analysis .content-wrapper .pull-right, .php-courseanalysis .content-wrapper .pull-right {
  float: none;
}

.content-wrapper .well {
  background: transparent;
  padding: 10px;
  border: none;
  box-shadow: none;
}

.body-class-members .content-wrapper {
  line-height: 28px;
}

.body-class-members .nav-menu-information .dropdown-menu .nav-menu-information {
  display: none;
}

/*.body-class-members .content-wrapper a {
  text-decoration: underline;
}*/

.body-class-members .content-wrapper a.btn {
  text-decoration: none;
}

.body-class-members .header-login {
  display: none;
}

.body-class-members .navbar-inverse .navbar-inner {
  margin-right: 0px;
}

.php-halloffame .hallOfFame > div:nth-child(3) {
  padding-left: 20px;
}

#ui-datepicker-div {
  display: none;
}

.php-search .content-wrapper input {
  margin-bottom: 0px;
}

.body-class-members.body-contentpage .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.body-class-members.body-contentpage .content-wrapper .container {
  width: auto;
}

.php-eclectic table thead.tableFloatingHeaderOriginal {
  background-color: var(--headingcolor) !important;
}

.php-boardcomps a.btn {
  width: 250px;
  display: block;
  font-size: 14px;
  margin: 5px 0px;
}

.php-boardcomps a.btn.pull-right {
  float: none;
  margin-top: -27px;
}

#memteetimes thead th {
  color: #fff;
}

.php-directory .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .php-friends .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
  font-size: 16px;
}

.php-diary .diary-nav-right a {
  transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -webkit-transition: all 0ms ease-in-out;
}

.php-log #globalwrap {
  overflow-x: scroll;
}

.php-log #globalwrap table tr td:nth-child(3) {
  word-break: break-word;
}

.php-weatherfg .table td {
  border: none;
}

@media (min-width: 0px) and (max-width: 800px) {
  .php-competition2 table.comps-list-table .comp-ical-td {
    right: -10px;
  }
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
   .content-wrapper {
    width: 810px;
  }
  .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;
  }
  .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;
  }
  .footer-copy {
    font-size: 16px;
  }
}

/* portrait tablet and mobile */

@media (min-width: 0px) and (max-width: 979px) {
  .header-wrapper {
    position: relative;
    width: 100%;
    min-height: 110px;
    height: auto;
  }
  .header-space {
    padding-top: 30px;
  }
  .header-logo {
    width: 50px;
    bottom: auto;
  }
  #hamburger-icon {
    position: absolute;
    left: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    z-index: 100;
  }
  #hamburger-icon .line {
    position: absolute;
    height: 3px;
    display: inline-block;
    background: #fff;
    left: 15px;
    width: 20px;
    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: 18px;
  }
  #hamburger-icon .line-2 {
    top: 25px;
  }
  #hamburger-icon .line-3 {
    top: 32px;
  }
  .nav-logo {
    display: none;
  }
  .nav-social {
    display: none;
  }
  .nav-buttons {
    display: none;
  }
  .nav-end-logo {
    display: none;
  }
  .header-wrapper .nav {
    margin: 80px auto 0px;
    max-width: 724px;
  }
  .navbar-inverse .nav-collapse .nav > li {
    border-bottom: 1px solid #d1dbbd;
  }
  .navbar-inverse .nav-collapse .nav > li:last-of-type {
    border-bottom: none;
  }
  .navbar-inverse .nav-collapse .nav > li > a {
    color: var(--navactivelink);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    padding: 10px 0px;
    position: relative;
  }
  .navbar-inverse .nav-collapse .nav > li.nav-haslevel-2 > a::after {
    content: '\f105';
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 11px;
    font-size: 16px;
    transform: all 200ms ease-in-out;
    -moz-transform: all 200ms ease-in-out;
    -webkit-transform: all 200ms ease-in-out;
  }
  .navbar-inverse .nav-collapse .nav > li.nav-haslevel-2.open > a::after {
    content: '\f107';
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .nav > li.current > a {
    color: var(--navlink);
    background: transparent;
  }
  .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(--navlink);
  }
  .nav-collapse .dropdown-menu {
    margin: 0px 0px 0px 20px;
  }
  .nav-collapse .dropdown-menu > li {
    border-bottom: 1px solid #d1dbbd;
  }
  .nav-collapse .dropdown-menu > li:last-of-type {
    border-bottom: none;
  }
  .navbar-inverse .nav-collapse .dropdown-menu a {
    color: var(--navactivelink);
    font-size: 20px;
    line-height: 26px;
    padding: 10px 0px;
    font-weight: 500;
  }
  .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 {
    color: var(--navlink);
    background: transparent;
  }
  .footer-space {
    padding: 0px 20px;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding: 0px;
  }
  .header-space {
    margin: 0px 15px;
  }
  #hamburger-icon {
    left: 0px;
  }
  .content-wrapper {
    width: auto;
    margin: 0px 10px;
  }
   .php-weatherfg div.phone-weather .weatherImage {
    background: transparent;
  }
  .content-wrapper div.phone-weather .wind_direction .wind_speed1 {
    top: 7px;
  }
  [class*="body-class-setcoursestatus"] .content-wrapper a {
    word-break: break-all;
  }
  [class*="body-class-setcoursestatus"] .content-wrapper textarea {
    width: 260px !important;
  }
  .nav-wrapper {
    width: auto;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 6px;
    font-size: 14px;
  }
  .table td, .table th {
    font-size: 12px;
    padding: 2px;
  }
  .php-competition td a.btn {
    font-size: 12px;
    border-radius: 0px;
  }
  .php-hcaplist .btn-group {
    display: block;
    width: 200px;
  }
  .php-hcaplist .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .php-hcaplist .btn-group + .btn-group {
    margin-left: 0px;
  }
  .php-roundmgmt .dateperiods {
    width: 100%;
    float: none;
    text-align: left;
  }
  .php-analysis .pull-left {
    float: none;
  }
  .php-analysis .pull-right {
    float: none;
  }
  .php-analysis .btn-group {
    width: 200px;
    display: block;
  }
  .php-analysis .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .body-class-members .nav-section {
    width: 100%;
  }
  #globalwrap .btn-group .btn:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  #globalwrap .btn-group .btn:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .hcaplist > p:last-child a.btn {
    margin: 6px 0px;
  }
  .php-directory table a[href*="mailto"] {
    word-break: break-all;
  }
  .php-ongoing .global p:nth-of-type(1) {
    width: 250px;
  }
  .php-ongoing a.btn {
    width: 55px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  .php-ongoing p:nth-of-type(1) a.btn:first-child {
    margin-top: 0px;
  }
  #memteetimes td {
    font-size: 12px;
  }
  input[type*="submit"], a.btn, button.btn {
    letter-spacing: 0px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .body-class-members #globalwrap {
    overflow-x: scroll;
  }
  .body-public #globalwrap {
    overflow-x: auto;
  }
}

/* small mobile */

@media (min-width: 0px) and (max-width: 480px) {
   #login fieldset {
    transform: translateX(0px);
  }
  .nav-tabs > li > a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
  }
}

/* editor */

.php-ckeditor .header-wrapper {
  display: none;
}

.php-ckeditor .wysiwyg-editable {
  border: 2px dashed #000;
}

.php-diary .diary-nav-right.affix {
  position: relative;
  box-shadow: none;
  padding: 0px;
}

.php-index #latestcomp h3 a {
  margin-left: 8px;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .content-wrapper .teetime-datepicker .date {
    width: 220px;
  }
}

/* end anton styles */