/*
* Pitchup.com admin area
*
* www.pitchup.com/supplier
*
*/

/*
colours:
    light blue      #e4f0f5
    mid blue        #d9e9f1
    pitchup blue    #b4e6fc
    pitchup green   #39b54a
    light yellow    #fcf8e3
*/

/* instead of adding .form-control to every textarea.. /////////////////////////////// */
/* manually added style here for now pending @TODO input mixins */
input[type="text"],
input[type="number"],
select,
textarea {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #777;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-transition:
    border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
}

select {
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea {
  height: auto;
}

select {
  width: auto;
  display: inline-block;
  cursor: pointer;
}

input[type="text"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #333;
  font-weight: normal;
  opacity: 1;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #333;
  font-weight: normal;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #333;
  font-weight: normal;
}

input::-ms-expand,
select::-ms-expand,
textarea::-ms-expand {
  background-color: transparent;
  border: 0;
}

input[type="text"][disabled],
input[type="text"][readonly],
input[type="number"][disabled],
input[type="number"][readonly],
select[disabled],
select[readonly],
textarea[disabled],
textarea[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}

input[type="text"][disabled],
fieldset[disabled] input[type="text"],
input[type="number"][disabled],
fieldset[disabled] input[type="number"],
select[disabled],
fieldset[disabled] select,
textarea[disabled],
fieldset[disabled] textarea {
  cursor: not-allowed;
}

.has-error input[type="text"],
.has-error input[type="number"],
.has-error select,
.has-error textarea {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error input[type="text"]:focus,
.has-error input[type="number"]:focus,
.has-error select:focus,
.has-error textarea:focus {
  border-color: #843534;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 6px #ce8483;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 6px #ce8483;
}

@media (min-width: 768px) {
  .form-inline input[type="text"],
  .form-inline input[type="number"],
  .form-inline select {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
}

/* override bootsrap's focus outline, and replace with focus-visible for accessibility */
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
}
a:focus-visible,
.btn:focus-visible,
.btn:active:focus-visible,
.btn.active:focus-visible,
.btn.focus-visible,
.btn:active.focus-visible,
.btn.active.focus-visible {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: 2px;
}

/* ///////////////////////////////////////////////////////////////////////////////// */

.form-inline .form-control,
.form-inline input[type="text"],
.form-inline input[type="number"],
.form-inline select,
.form-inline .form-group label {
  margin-right: 8px;
}

label {
  font-weight: normal;
}

.input-mini {
  width: 80px !important;
}

.input-small {
  width: 108px !important;
}

.input-large {
  width: 210px !important;
}

@media (min-width: 992px) {
  .input-xlarge {
    width: 270px !important;
  }

  .input-xxlarge {
    width: 500px !important;
  }
}

input[type="file"],
form label {
  cursor: pointer;
}

/* disable webkits spin buttons on input type=number */
input[type="number"].nospin::-webkit-inner-spin-button,
input[type="number"].nospin::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* multiline buttons */
.multiline {
  white-space: normal;
}

/* disable FF number steppers */
input[type="number"] {
  -moz-appearance: textfield;
}

/* errors */
fieldset.has-error,
.panel-group.has-error {
  background-color: #fcf8e3;
}

.errorlist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.errorlist li {
  color: #b94a48;
  line-height: 1.3;
}

.errorlist .errorlist {
  margin-left: 25px;
  list-style: circle;
  font-weight: normal;
}

.help-block {
  margin-top: 0;
  margin-bottom: 0;
}

.help-block p {
  margin-bottom: 4px;
}

.help-block.sml {
  font-size: smaller;
  font-weight: normal;
}

.word-counter {
  font-size: smaller;
  color: #999;
  float: right;
}

/* Low availability warning strip across top of site */
.allocation-warning-note {
  background-color: #d30006;
}

.warning-note {
  color: white;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  border-radius: 6px;
}

.warning-note a {
  color: white;
  text-decoration: underline;
}

/* Navbar
================================================== */
#headertop {
  height: 40px;
  background: #b4e6fc url("../img/grass.png") repeat-x left bottom;
}

#logo {
  margin: 4px 22px 0 0;
}

#logo a {
  width: 130px;
  height: 27px;
  display: block;
}

#tipis {
  margin-right: 69px;
  background: url("../img/pu_admin_sprites.png") no-repeat left -122px;
  display: block;
  width: 74px;
  height: 40px;
}

#headernav {
  padding-top: 7px;
  margin-right: 10px;
}

/* badges positioning */
.nav-tabs .badge {
  padding-left: 6px;
  padding-right: 6px;
  bottom: 22px;
  position: absolute;
  z-index: 1;
  right: -2px;
  text-shadow: none;
}

.badge-important {
  background-color: #b94a48;
}

.badge-warning {
  background-color: #f89406;
}

.badge-success {
  background-color: #468847;
}

.badge-info {
  background-color: #3a87ad;
}

.page-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
  padding: 10px 20px 10px;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}

.page-footer p {
  font-size: 12px;
}

.copyright {
  color: #ccc;
}

.nav-bar {
  margin-bottom: 10px;
}

.nav-bar #login {
  right: 15px;
}

.no-tabs {
  height: 37px;
}

/* language */
.admin .menu-list.language {
  float: right;
  position: relative;
  top: 3px;
  right: auto;
}

.admin .menu-list-options {
  z-index: 9999;
}

.admin .menu-list-selected {
  border-color: white;
}

.pad-language .language-input-option {
  margin-right: 35px;
}

.pad-language .row-fluid {
  position: relative;
  margin-bottom: 10px;
  margin-top: -5px;
}

.pad-language .maxlength-feedback {
  position: absolute;
  right: 0;
  top: 1px;
}

.language-input-option ul {
  margin: 0px 0 2px 0;
}

.language-input-option li {
  display: inline-block;
}

.language-input-option label {
  min-height: 20px;
  padding-left: 20px;
  margin-left: 10px;
}

.language-input-option input[type="radio"] {
  float: left;
  width: auto;
  margin: 4px 0 0 -16px;
  line-height: normal;
}

.translated_languages {
  margin: 0 0 2px 1em;
}

.translated_languages .label {
  margin-left: 1px;
}

.uniques .view-en-version,
.uniques .translated_languages {
  margin-right: 2em;
}

.uniques .first label {
  float: left;
}

.uniques .first .request-change-btn {
  margin: 0 0 0.3em 2em;
}

.view-en-version {
  font-size: smaller;
  color: #337ab7;
}

.view-en-version:hover {
  text-decoration: underline;
}

label + .view-en-version {
  bottom: -4px;
  position: relative;
}

.is_staff .uniques .view-en-version {
  margin-right: 0;
}

.with-request-change label {
  float: left;
  margin-right: 1em;
}

/* Navbar Tabs
================================================== */
#primarytabs {
  background: #39b54a;
  background: linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -o-linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -moz-linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -webkit-linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -ms-linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #176b2c),
    color-stop(0.8, #39b54a)
  );
}

#primarytabs .nav {
  margin-bottom: 0;
  margin-right: 0;
  border-bottom: none;
}

#primarytabs .nav-tabs > li {
  margin-bottom: 0;
  position: relative;
  font-size: 12px;
}

#primarytabs .nav > li > a {
  padding: 3px 8px 5px;
  margin: 6px 7px 0 0;
}

#primarytabs.en-gb .nav-tabs > li,
#primarytabs.en-us .nav-tabs > li {
  font-size: inherit;
}

#primarytabs.en-gb .nav > li > a,
#primarytabs.en-us .nav > li > a {
  padding: 3px 10px 5px;
}

#primarytabs .nav > .active > a,
#primarytabs .nav > .active > a:hover,
#primarytabs .nav > .active > a:focus,
#primarytabs .nav > .active > a.alt,
#primarytabs .nav > .active > a.alt:hover,
#primarytabs .nav > .active > a.alt:focus {
  background: white;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #555;
  text-shadow: 0 1px 0 white;
  border-bottom: none;
  border-bottom-color: transparent;
}

#primarytabs .nav-tabs > li.active {
  margin-top: 1px;
  border-bottom-color: transparent;
}

#primarytabs .nav > li > a,
#primarytabs .nav > li > a:focus,
#primarytabs .nav > li > a:hover {
  background: #2a6f2d \9; /* IE7-8 */
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-shadow: 0 -1px 0 #111;
}

#primarytabs .nav > li > a:focus,
#primarytabs .nav > li > a:hover {
  background: #000;
  border-color: transparent;
  outline: none;
}

#primarytabs .nav > li > a.alt {
  background: #0f5f90 \9; /* IE7-8 */
  background: rgba(0, 68, 204, 0.6);
}

#primarytabs .nav > li > a.alt:focus,
#primarytabs .nav > li > a.alt:hover {
  background: #000;
  border-color: transparent;
}

#primarytabs .nav > li > a:focus-visible {
  outline: revert;
  text-decoration: underline;
}

#primarytabs .btn-navbar {
  background: #040404;
  margin: 4px 0;
}

#primarytabs .nav > li.disabled {
  opacity: 0.5;
}

#primarytabs .nav > li.disabled:hover,
#primarytabs .nav > li.disabled a:hover {
  cursor: not-allowed;
}

#primarytabs .nav > li.disabled a {
  pointer-events: none;
}

/* responsive primary tab navigation */
.responsive-tabs.nav-tabs span.glyphicon {
  display: none;
}

@media (max-width: 955px) {
  .responsive-tabs.nav-tabs {
    position: relative;
    z-index: 10;
    height: 42px;
    overflow: visible;
    margin-top: 5px;
    width: 50%;
  }

  .responsive-tabs span.glyphicon {
    position: absolute;
    top: 11px;
    right: 22px;
  }

  .responsive-tabs span.glyphicon.glyphicon-triangle-bottom {
    display: block;
  }

  .responsive-tabs.nav-tabs .badge {
    position: relative;
    bottom: auto;
    right: -5px;
  }

  .responsive-tabs.nav-tabs > li {
    display: none;
    float: none;
    text-align: center;
  }

  #primarytabs .responsive-tabs.nav-tabs > li > a {
    padding: 6px;
    margin: 0;
    background: white;
    color: #555;
    text-shadow: 0 1px 0 white;
  }

  /* active menu item */
  #primarytabs .responsive-tabs.nav-tabs > li.active {
    display: block;
    margin-top: 0;
  }

  #primarytabs .responsive-tabs.nav-tabs > li.active > a {
    border-radius: 6px;
  }

  /* menu open state */
  #primarytabs .responsive-tabs.nav-tabs.open {
    height: auto;
    margin-bottom: 2em;
  }

  .responsive-tabs.nav-tabs.open span.glyphicon.glyphicon-triangle-top {
    display: block;
  }

  .responsive-tabs.nav-tabs.open span.glyphicon.glyphicon-triangle-bottom {
    display: none;
  }

  .responsive-tabs.nav-tabs.open > li {
    display: block;
  }

  #primarytabs .responsive-tabs.nav-tabs.open > li > a {
    border-top: 1px solid #333;
    border-right: none;
    border-left: none;
    border-radius: 0;
  }

  #primarytabs .responsive-tabs.nav-tabs.open > li:first-of-type > a {
    border-top: none;
    border-radius: 6px 6px 0 0;
  }

  #primarytabs .responsive-tabs.nav-tabs.open > li:last-of-type > a {
    border-radius: 0 0 6px 6px;
  }

  #primarytabs .responsive-tabs.nav-tabs.open > li.active > a {
    background: rgba(0, 68, 204, 0.6);
    color: white;
    text-shadow: 0 1px 0 #333;
  }
}

.nav-tabs .photo_count.low {
  color: #be0000;
}

.nav-tabs > li.highlight > a {
  color: #be0000;
  font-weight: bold;
}

.nav-tabs > .active.highlight > a,
.nav-tabs > .active.highlight > a:hover {
  color: #be0000;
}

.nav-tabs > li.highlight span {
  font-weight: normal;
}

.nav-tabs > li.highlight {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;

  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  -o-animation-duration: 0.3s;
  animation-duration: 0.3s;

  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -ms-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s;

  animation-iteration-count: 2;
  -webkit-animation-iteration-count: 2;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(0.9);
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(0.9);
  }
  50% {
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(0.9);
  }
}

@-o-keyframes pulse {
  0% {
    -o-transform: scale(0.9);
  }
  50% {
    -o-transform: scale(1.2);
  }
  100% {
    -o-transform: scale(0.9);
  }
}

/* Sub-Nav pills
================================================== */
#subnav {
  border-bottom: 1px solid #ddd;
  padding: 5px 10px;
  display: flex;
  flex-direction: row-reverse;
}

#subnav .nav-pills > .active > a,
#subnav .nav-pills > .active > a:hover {
  background-color: #208e3c;
  color: white;
  text-shadow: 0 -1px 0 #555;
}

#subnav .nav-pills > li > a {
  color: #2b2b2b;
  margin: 10px 20px 9px 12px;
  padding: 5px 10px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  font-size: 1.1em;
}

#subnav .nav-pills > li > a:hover {
  background-color: #dedede;
}

#campsite_status {
  margin: 3px 11px 0 0;
  display: table;
  flex-shrink: 0;
}

#campsite_status span {
  font-weight: bold;
  color: #555;
}

#subnav .tourlink {
  margin: 3px 0 0 0;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

/*#subnav .tourlink .btn {*/
/*    margin-top: -3px;*/
/*}*/

#subnav .nav-pills {
  display: inline-block;
  clear: right;
}

.tourlink p {
  margin: 0;
}

.subnav_note {
  background-color: #b4e6fc;
  border-radius: 16px;
  padding: 2px 10px;
  /*margin-top: -3px;*/
  float: left;
  display: inline-block;
  position: relative;
  margin: 0 0.5em 0.5em 0;
}

.subnav_note.integration {
  background-color: #39b54a;
  color: white;
  margin: 0 0.5em 0.5em 0;
}

.promo-note-link {
  text-decoration: underline;
  color: #555;
  font-weight: bold;
}

.subnav_note.integration a {
  text-decoration: underline;
  color: white;
}

.subnav_note.sumup {
  background-color: #b94a48;
  color: white;
  margin: 0 0.5em 0.5em 0;
}

.subnav_note .new {
  color: #f50005;
  font-weight: bold;
  padding: 0.25em;
}

.accommodation_note {
  background-color: #ffee99;
  display: inline-block;
  max-width: 60%;
  margin: 0.6em 1em 0.3em 0;
  padding: 5px 10px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .accommodation_note {
    display: block;
    max-width: 100%;
  }

  .subnav_note {
    float: none;
  }
}

.external-site-link {
  margin-top: 6px;
}

/* Accordian customisation
================================================== */
.accordion-toggle .accordion-icon {
  display: inline-block;
  float: left;
  margin: 3px 5px 0 3px;
  height: 20px;
  width: 20px;
  background: url("../img/pu_admin_sprites.png") no-repeat -289px -66px;

  transition: transform 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-in;
  -o-transition: -o-transform 0.3s ease-in;
  -webkit-transition: -webkit-transform 0.3s ease-in;

  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  opacity: 1;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.accordion-toggle,
.accordion-toggle.collapsed:hover {
  background-color: #dedede;
}

.accordion-toggle.collapsed {
  background-color: #f5f5f5;
}

.accordion-toggle.collapsed .accordion-icon {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  opacity: 0.6;
}

/* accordion header customisation - make whole header a link */
.dashboard .panel-heading {
  padding: 10px 15px;
  position: relative;
}

.dashboard .panel-heading .badge-important {
  background-color: #b94a48;
  color: white;
  position: absolute;
  top: -4px;
  right: -6px;
}

.panel-heading {
  padding: 0;
}

.panel-title {
  font-size: 1.3em;
}

.accordion-toggle {
  display: block;
  font-weight: bold;
}

.accordion-toggle:hover .accordion-icon {
  opacity: 1;
}

/* accordion status: green tick, red cross, saving spinner */
.accordion-status {
  display: inline-block;
  float: right;
  margin: -4px 0 0 0;
  height: 28px;
  width: 35px;
  background: url("../img/pu_admin_sprites.png") no-repeat right bottom;
}

.accordion-status.completed {
  background-position: -232px top;
}

.accordion-status.incomplete {
  background-position: -180px top;
}

.accordion-status.saving {
  background: url("../../pitchup/images/loading_32.gif") no-repeat top left;
  background-size: 28px 28px;
}

/* mini accordion panels */
.accordion-panel {
  padding: 0 1em 0 0.4em;
  display: block;
  min-height: 27px;
  line-height: 26px;
  font-weight: normal;
  border-radius: 4px 4px 0 0;
}

.accordion-panel.collapsed {
  border-radius: 4px;
}

.accordion-panel:hover,
.accordion-panel:focus,
.accordion-panel:active {
  color: #333;
  text-decoration: none;
}

/* !General ================================================== */
.center {
  text-align: center !important;
}

.rght {
  text-align: right !important;
}

.lft {
  text-align: left !important;
}

.rhs {
  float: right;
}

.valign {
  vertical-align: middle !important;
}

.valigntop {
  vertical-align: top !important;
}

.valignbottom {
  vertical-align: bottom !important;
}

.noborder {
  border: none !important;
}

.padbottom {
  padding-bottom: 1em;
}

.padtop {
  padding-top: 1em;
}

.padleft {
  padding-left: 1em !important;
}

.padright {
  padding-right: 1em;
}

.margintop {
  margin-top: 1em !important;
}

.marginright {
  margin-right: 2em;
}

.margino {
  margin: 0 !important;
}

.pado {
  padding: 0 !important;
}

.nowrap {
  white-space: nowrap;
}

.strong {
  font-weight: bold !important;
}

.touch .radio,
.touch .checkbox {
  min-height: 10px !important;
}

.auto-width {
  width: auto !important;
}

.hidden {
  display: none;
}

hr {
  margin: 10px 0;
  border-top-color: #ddd;
}

.nopointer {
  pointer-events: none;
  cursor: not-allowed;
}

.no-outline {
  outline: none;
}

.button-spacing {
  margin-left: 1em;
}

/* loading cursor */
body.loading,
body.loading input,
body.loading a {
  cursor: wait !important;
}

.hr-styled {
  margin: 10px 0;
  border-top-color: #ddd;
}

fieldset {
  margin: 0;
  padding: 2px 1em 1em;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #f5f5f5;
}

.fieldset-has-error {
  background-color: #fcf8e3;
  border-color: #a94442;
}

legend {
  font-size: 18px;
  width: auto;
  border-bottom: none;
  margin-bottom: 0px;
  line-height: 1;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

select.mini {
  font-size: 11px;
  height: 20px;
  line-height: 1;
  padding: 0px 6px; /* FF needs this! */
}

option:disabled {
  color: #dedede;
}

/* modal customisation */

.pujax-modal {
  /* stack small modal above large */
  z-index: 2000;
}

.modal-dialog.ui-draggable .modal-header {
  cursor: move;
}

@media (min-width: 992px) {
  .pujax-modal-large .modal-dialog {
    width: 900px;
  }
}

.modal-footer button.btn-primary {
  float: right;
  margin-left: 2em !important;
}

.modal-footer .text-error {
  line-height: 1.2;
  margin-top: -2px;
  color: #b94a48;
}

.modal-body {
  overflow-x: auto;
}

.content_title {
  margin-top: 0;
}

.counter {
  text-align: right;
  color: #999;
  font-size: 12px;
  font-weight: normal;
  float: right;
}

.counter.positive {
  color: #999;
}

.counter.gettingclose {
  color: #555;
}

.counter.negative {
  color: red;
  font-weight: bold;
}

.alert.fade {
  text-align: left;
  width: 60%;
  margin: 0 20px 8px;
  border-color: #bbb;
  -webkit-box-shadow: -2px 2px 5px rgba(50, 50, 50, 0.2);
  -moz-box-shadow: -2px 2px 5px rgba(50, 50, 50, 0.2);
  box-shadow: -2px 2px 5px rgba(50, 50, 50, 0.2);

  position: fixed;
  bottom: -100px;
  z-index: 1000;
  margin: 0;
  border-bottom: 0;
  border-left: 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.alert.in {
  display: block !important;
}

.alert p {
  margin: 0;
}

.alert-inline {
  display: inline-block;
  margin: 1em 0;
}

/* floating alert panel - overrides bottom fade-in alert with top fixed position slide-down alert */
.alert.fade.alert-floating {
  width: 90%;
  position: fixed;
  bottom: auto !important;
  display: block !important;
  top: -100px;
  left: 5%;
  right: 5%;
  text-align: center;
  margin: 0;
  border-color: #d30006;
  background-color: #d30006;
  color: white;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  z-index: 9998;
  opacity: 1 !important;
  -webkit-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.alert.fade.alert-floating a {
  color: white;
  text-decoration: underline;
}

.alert.fade.alert-floating.in {
  opacity: 1;
  top: 0;
}

.alert-floating .close {
  color: white;
  text-shadow: 0 1px 0 #111;
  opacity: 0.8;
}

.close:focus {
  outline: none;
}

/* #page_notifications.max-width {max-width: 1150px;} */
#page_notifications a {
  color: black;
  text-decoration: underline;
}

#page_notifications ul {
  list-style: none;
}

#page_notifications li:before {
  content: "\2217  ";
}

.page-instructions {
  width: 80%;
}

#ui-datepicker-div {
  z-index: 2000 !important;
}

table.table-header th {
  font-weight: bold;
}

.input-xmedium {
  width: 170px;
}

.form-group.has-error,
.table tbody tr.warning td,
.table tbody tr.warning th {
  background-color: #fcf8e3;
}

table.nostyle,
table.nostyle td {
  border: none;
  border-color: transparent;
  padding: 0;
}

th.holiday {
  color: #04c;
  /* background-color: #D9EDF7 !important; */
}

/* intro help/popup customisation */
.introjs-helperNumberLayer {
  display: none !important;
}

.introjs-tooltip {
  min-width: 400px !important;
  max-width: 600px !important;
}

/* make readonly datepicker inputs not greyed-out */
input.datePicker[readonly] {
  background-color: #fff;
  cursor: pointer;
}

/* pickadate customisation */
.picker__table td,
.picker__table th {
  text-align: center !important;
  vertical-align: middle !important;
  border: none !important;
  padding: 0 !important;
  line-height: inherit !important;
}

.picker__select--month,
.picker__select--year {
  padding: 0 0.5em !important;
  line-height: 2em !important;
}

@media (min-height: 33.875em) {
  .picker__frame {
    top: 10% !important;
  }
}

/* !Login ================================================== */

.login_container h3 {
  line-height: 27px;
  color: #555;
}

.login_container {
  max-width: 100%;
  padding: 0 1em 2em;
  margin: 0 auto 2em;
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.login-form {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2em;
}

@media (min-width: 768px) {
  .login_container {
    max-width: 700px;
    padding: 19px 29px 29px;
    margin: 0 auto 20px;
    position: relative;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0px 2px 20px #888;
    -webkit-box-shadow: 0px 2px 20px #888;
    box-shadow: 0px 2px 20px #888;
  }

  .login-form {
    border-bottom: none;
    border-right: 1px solid #ccc;
    padding-bottom: 0;
  }

  .manager-signup-info {
    padding: 0 0 0 2em;
  }
}

.login-wrapper,
.form-signin {
  max-width: 300px;
}

.form-signin .checkbox {
  margin-bottom: 10px;
}

.form-signin input[type="text"],
.form-signin input[type="email"],
.form-signin input[type="password"] {
  font-size: 16px;
  height: auto;
  padding: 7px 9px;
}

.form-signin input[type="password"] {
  margin-top: 15px;
}

.form-signup .errorlist,
.form-signin .errorlist {
  color: red;
  font-weight: bold;
}

/* !Home > Dashboard ================================================== */
.banner-slot {
  text-align: center;
  margin-bottom: 1em;
}

.banner-slot a {
  display: inline-block;
}

.banner-slot img {
  width: 100%;
  height: auto;
  max-width: 800px;
}

.promo-panel {
  background: #be0000;
  text-align: center;
  min-height: 2em;
  margin-bottom: 1em;
  border-radius: 3px;
}

.promo-link {
  width: 100%;
  display: inline-block;
  color: white !important;
  text-shadow: none;
  padding: 0.3em 0 0 0;
  text-decoration: underline;
}

.stats.well {
  text-align: center;
  padding: 10px;
  min-height: 95px;
  margin-bottom: 0;
  margin-left: 3.5%;
  width: 31%;
}

.stats.well:first-child {
  margin-left: 0;
}

.stats.well h2 {
  margin: 0;
}

.stats.well p {
  margin: 0;
  line-height: 1em;
  min-height: 30px;
  vertical-align: middle;
  display: inline-table;
}

.input-container {
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}

.form-group.has-error .input-container {
  background-color: #fcf8e3;
}

@media (min-width: 768px) {
  .hierarchy-label-alignment,
  .hierarchy-widget label,
  .fixed-hierarchy label {
    min-width: 135px;
    text-align: right;
  }

  .hierarchy-widget select {
    width: 250px !important;
  }

  .hierarchy-widget,
  .fixed-hierarchy {
    float: left;
  }

  .flag-location {
    margin: 0.8em 0 0 4em;
  }
}

.hierarchy-widget label {
  margin-right: 8px;
}

.hierarchy-widget .form-inline {
  margin-bottom: 10px;
}

.proposed-hierarchy label {
  width: 75px;
}

.proposed-hierarchy .proposed label {
  font-weight: bold;
  color: #be0000;
}

.proposed-hierarchy .proposed .select2-choice {
  border-color: #be0000;
}

#stats_block fieldset h4 {
  margin: 0;
}

#stats_block fieldset {
  padding-bottom: 0.1em;
}

#stats_block legend {
  line-height: 30px;
}

#stats_block table {
  margin-bottom: 13px;
  border-bottom: 1px solid #dddddd;
}

.photo-warning i.size_warning {
  height: 17px;
}

.alert.notice p,
.alert.notice h4 {
  color: #333333;
}

.alert-block.photo-warning {
  position: relative;
}

#user_alerts .popover-title {
  color: #333;
}

#user_alerts .popover {
  min-width: 360px;
}

.warnings-group p:first-child {
  padding: 0;
}

.alert .pt {
  margin-bottom: 10px;
}

/* !Home > Site Info ================================================== */
#accomodation_table td {
  border: none;
}

#accomodation_table td label {
  vertical-align: top;
}

#mapContainer img {
  max-width: none;
}

/* fix for map tiles / bootstrap bug */
.map-loading {
  margin: auto;
  display: block;
  width: 32px;
  height: 32px;
  padding-top: 180px;
}

#modal_preset_terms .hr-styled {
  margin: 6px 0 0px;
  border-top-color: #ddd;
  height: 1px;
}

#modal_preset_terms .table th,
#modal_preset_terms .table td {
  line-height: 1;
  padding: 1px;
  vertical-align: middle;
  border: none;
}

.campsite_terms p {
  margin: 0 0 5px 0;
}

.full-mercury,
.empty-mercury {
  width: 22px;
}

.empty-mercury a,
.full-mercury a {
  display: block;
}

.thermometer .height_20 a {
  height: 32px;
}

.thermometer .height_10 a {
  height: 32px;
}

.thermometer .height_5 a {
  height: 16px;
}

.thermometer .complete {
  color: #ccc;
  padding: 0 2em;
}

.thermometer .complete .thermometer_link {
  color: #555;
}

table.thermometer {
  margin: 1.5em 0 0 11px;
  width: auto;
}

table.thermometer td {
  padding: 0;
  vertical-align: middle;
  line-height: 1;
}

.thermometer_stage span {
  display: block;
  float: left;
  min-height: 25px;
  width: 14px;
}

table.thermometer tr:hover td {
  background-color: #f5f5f5;
}

.thermometer_bottom span {
  background: white url("../img/pu_admin_sprites.png") no-repeat -254px -175px;
  height: 40px;
  width: 46px;
  display: block;
}

#advance_payment_options {
  margin-top: 10px;
  margin-left: 20px;
}

#advance_payment_suboptions {
  margin-top: 10px;
}

.nobullets li {
  list-style: none;
}

.nobullets li input[type="radio"] {
  margin: 0;
}

input.toggle-times {
  margin: 0;
}

.help-block.hierarchy-widget-help {
  padding: 5px;
  clear: both;
  display: block;
}

.logo_payup_mini {
  display: inline-block;
  width: 56px;
  height: 23px;
  text-indent: -999em;
  background: url("../img/pu_admin_sprites.png") no-repeat 0 -96px;
  top: -4px;
  left: 1px;
  position: relative;
}

.site_grade {
  padding: 0.5em;
  background-color: #eeeeee;
  color: #333;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.site_grade p {
  margin: 0;
  font-size: smaller;
  line-height: 1;
  text-align: left;
  padding-bottom: 3px;
}

.grade {
  background-image: url("../../pitchup/images2/sprites-general.png");
  display: inline-block;
  height: 16px;
  overflow: hidden;
  text-indent: -999em;
  width: 72px;
  top: 2px;
  position: relative;
}

.stars0 {
  background-position: -70px -139px;
}

.stars1 {
  background-position: -56px -139px;
}

.stars2 {
  background-position: -42px -139px;
}

.stars3 {
  background-position: -28px -139px;
}

.stars4 {
  background-position: -14px -139px;
}

.stars5 {
  background-position: 0 -139px;
}

.take_payments_direct.disabled {
  opacity: 0.4;
}

/* stripe css-based button */
.stripe-connect {
  display: inline-block;
  margin-bottom: 1px;
  background-image: -webkit-linear-gradient(#28a0e5, #015e94);
  background-image: -moz-linear-gradient(#28a0e5, #015e94);
  background-image: -ms-linear-gradient(#28a0e5, #015e94);
  background-image: linear-gradient(#28a0e5, #015e94);
  -webkit-font-smoothing: antialiased;
  border: 0;
  padding: 1px;
  height: 30px;
  text-decoration: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.stripe-connect span {
  display: block;
  position: relative;
  padding: 0 12px 0 44px;
  height: 30px;
  background: #1275ff;
  background-image: -webkit-linear-gradient(#7dc5ee, #008cdd 85%, #30a2e4);
  background-image: -moz-linear-gradient(#7dc5ee, #008cdd 85%, #30a2e4);
  background-image: -ms-linear-gradient(#7dc5ee, #008cdd 85%, #30a2e4);
  background-image: linear-gradient(#7dc5ee, #008cdd 85%, #30a2e4);
  font-size: 14px;
  line-height: 30px;
  color: white;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.stripe-connect span:before {
  content: "";
  display: block;
  position: absolute;
  left: 11px;
  top: 50%;
  width: 23px;
  height: 24px;
  margin-top: -12px;
  background-repeat: no-repeat;
  background-size: 23px 24px;
}

.stripe-connect:hover,
.stripe-connect:active {
  background: #005d93;
  text-decoration: none;
}

.stripe-connect:active span {
  color: #eee;
  text-decoration: none;
  background: #008cdd;
  background-image: -webkit-linear-gradient(#008cdd, #008cdd 85%, #239adf);
  background-image: -moz-linear-gradient(#008cdd, #008cdd 85%, #239adf);
  background-image: -ms-linear-gradient(#008cdd, #008cdd 85%, #239adf);
  background-image: linear-gradient(#008cdd, #008cdd 85%, #239adf);
  -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

.stripe-connect span:before {
  background-image: url("data:image/png;base64,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");
}

.campsite_terms h4 {
  margin: 0.5em 0 0 0;
}

.campsite_terms p.notices {
  font-weight: bold;
}

.campsite-tax-formset .dynamic-form-add td {
  text-align: right;
  border-top: 1px solid #ddd;
}

.is_staff .term-var {
  color: #497cf1;
}

/* !Pitches & Extras ================================================== */
.pt-summary {
  line-height: 1.1;
  margin-bottom: 0;
}

.pitchtypes_extras_controls {
  margin-left: 2em;
}

.pitches_accordion .item-title {
  color: #333;
  background-color: transparent;
  padding: 2px 10px;
}

.pitches_accordion .item-title h4 {
  font-size: 20px;
  margin: 6px 5px 8px 0;
  display: inline-block;
}

.pitches_accordion .extra .item-title h4 {
  margin: 1px 5px 6px 0;
}

.pitches_accordion .item-title h4 a,
.pitches_accordion .item-title h4 a:visited {
  color: #333;
  text-decoration: underline;
}

.panel-heading .staff-label {
  margin-left: 2em;
  top: -3px;
  position: relative;
}

.icon_holder {
  min-width: 30px;
  margin-left: 5px;
  text-align: left;
  display: inline-block;
}

.icon_holder .categoryIcon {
  margin: -8px 9px 0 -8px !important;
  float: none !important;
  display: inline-block !important;
}

.pitch-type1 {
  position: relative;
}

.pitch_losenge.pitch-type1,
.pitch-type1 {
  background: #fdbfb1;
  background: -moz-linear-gradient(top, #fdbfb1, #dea89b);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#fdbfb1), to(#dea89b));
  background: -webkit-linear-gradient(top, #fdbfb1, #dea89b);
  background: -o-linear-gradient(top, #fdbfb1, #dea89b);
  background: linear-gradient(to bottom, #fdbfb1, #dea89b);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffdbfb1', endColorstr='#ffdea89b', GradientType=0);
}

.btn.pitch-type1:hover,
.btn.pitch-type1:active {
  background: #dea89b;
}

.pitch_losenge.pitch-type2,
.pitch-type2 {
  background: #cec1b5;
  background: -moz-linear-gradient(top, #cec1b5, #b5aa9f);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#cec1b5), to(#b5aa9f));
  background: -webkit-linear-gradient(top, #cec1b5, #b5aa9f);
  background: -o-linear-gradient(top, #cec1b5, #b5aa9f);
  background: linear-gradient(to bottom, #cec1b5, #b5aa9f);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcec1b5', endColorstr='#ffb5aa9f', GradientType=0);
}

.pitch_losenge.extra,
.extra {
  background: #b5eadb;
  background: -moz-linear-gradient(top, #b5eadb, #90bfb2);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#b5eadb), to(#90bfb2));
  background: -webkit-linear-gradient(top, #b5eadb, #90bfb2);
  background: -o-linear-gradient(top, #b5eadb, #90bfb2);
  background: linear-gradient(to bottom, #b5eadb, #90bfb2);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb5eadb', endColorstr='#ff90bfb2', GradientType=0);
}

.extras-row {
  background-color: #e3f5f0;
}

.pitches_accordion .panel-body {
  background-color: #ededed;
}

.cts-table.panel-body {
  padding-bottom: 8px;
}

.pitches_accordion .charge-type {
  border-top: 1px solid #bbb;
  margin-top: 0px;
  padding-top: 3px;
  position: relative;
}

.pitches_accordion .charge-type .title {
  font-weight: bold;
}

.pitches_accordion .filter.pitches .charge-type .title {
  width: 290px;
  max-width: 290px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.pitches_accordion .associated-extras {
  position: absolute;
  left: 300px;
  white-space: nowrap;
  overflow: hidden;
  right: 190px;
  text-overflow: ellipsis;
}

.single-extra .associated-extras {
  left: 590px;
}

.single-extra .charge-type .title {
  width: 300px;
  max-width: 300px;
  padding-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.pitches_accordion .charge-type .delete-btn {
  margin-left: 1em;
}

.inactive .activate-label,
.pitches_accordion .charge-type .associated-extras .warning {
  color: #b94a48;
  font-weight: bold;
}

.pending-update {
  font-weight: normal !important;
  color: #999 !important;
  pointer-events: none;
  cursor: not-allowed;
}

.pending-update input {
  opacity: 0.3;
}

.pitches_accordion .charge-type:first-child {
  border: none;
  margin-top: 0;
  padding-top: 0;
}

.pitches_accordion .add_charge_type {
  display: block;
  border-top: 1px solid #bbb;
  margin-bottom: -7px;
  margin-top: 0px;
}

.pitches_accordion .item-title {
  display: inline-block;
  margin: 3px 0 0 4px;
}

.specific-name {
  font-size: 17px;
}

.pitches_accordion .pitch-details {
  margin: 10px 7px;
}

.pitches_accordion .extra .pitch-details {
  margin: 7px 7px 0 0;
}

.pitches_accordion .pitch-details td {
  padding: 0 8px;
  border-left: 1px solid #555;
}

.pitches_accordion .pitch-details td:first-child {
  border-left: none;
}

.pitches_accordion .pitch-details a {
  color: #333;
}

.delete-btn {
  color: #333;
}

#pitches_extras_filter {
  width: auto;
}

#accordion2 {
  margin: 0;
}

div.filter.pitches {
  margin-bottom: 38px;
}

div.filter.extras {
  margin: 0 -20px 20px -20px;
  padding: 20px 20px 60px 20px;
  background-color: #fcf8e3;
}

div.filter.pitches h2,
div.filter.extras h2 {
  margin-bottom: 10px;
  margin-top: 0;
}

.pitchtype_photo {
  width: 60px;
  height: 45px;
  background-color: white;
}

.pitchtype_photo.no {
  vertical-align: middle;
  vertical-align: middle;
  text-align: center;
  line-height: 11px;
}

.extras_table {
  position: relative;
}

.incomplete-extras.table-condensed td {
  padding: 1px;
}

.incomplete-extras .titleheader {
  font-weight: bold;
  padding-left: 5px !important;
}

.btn_chargetype {
  margin: 8px 0 0;
}

.btn_chargetype + .btn_chargetype {
  margin-right: 13px;
}

/* add extra form */
.form-chargetypes {
  border-top: 1px solid #dedede;
  display: inline-flex;
  width: 100%;
  text-align: left;
  padding: 3px;
  margin: 3px 0 0;
  position: relative;
}

.form-chargetypes:last-child {
  border-bottom: 1px solid #dedede;
}

.form-chargetypes .chargetype {
  font-style: italic;
  display: table-cell;
  width: 40%;
  line-height: 1.2;
}

.form-chargetypes input[type="checkbox"] {
  margin: 0;
  float: none;
  position: absolute;
  left: 0;
  top: 5px;
}

.form-chargetypes .pitchtype {
  width: 60%;
  display: table-cell;
  padding-right: 10px;
  padding-left: 15px;
  text-align: left;
  line-height: 1.2;
}

.pricing-method-title {
  margin: 1em 0 0 0;
}

.form-chargetypes .debug {
  position: absolute;
  left: 0px;
  top: 14px;
  font-family: monospace;
  font-size: 9px;
}

#chargetypes-checkboxes .debug {
  color: #999;
}

.form-chargetypes .staff-checkbox {
  position: absolute;
  left: -216px;
  top: 0;
  z-index: 1;
  white-space: nowrap;
  text-align: right;
  width: 200px;
  display: block;
}

.form-chargetypes .staff-checkbox input[type="checkbox"] {
  position: relative;
  left: 0;
  top: 0;
  margin-left: 0.5em;
}

.staff-checkbox .staff-only {
  font-size: 11px;
  color: #999;
  vertical-align: text-top;
}

.label-inactive {
  background-color: #999;
}

/* disabled chargetype group */
.chargetype-group.disabled .label-inactive {
  background-color: #ddd;
}

.chargetype-group.disabled .form-chargetypes {
  color: #ccc;
}

.chargetype-group.disabled .pricing-method-title {
  color: #999;
}

.chargetype-group.disabled .select-all-checkboxes {
  cursor: not-allowed;
  pointer-events: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}

.chargetype-group.disabled .select-all-checkboxes:focus {
  outline: none;
  background: white;
  border-color: #ccc;
}

/* inline creation of pitch charge-type */
.new-charge-type {
  margin: 4px 0 0;
  background-color: white;
  border: 1px solid #bbb;
  padding: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: -2px 2px 5px rgba(50, 50, 50, 0.2);
  -moz-box-shadow: -2px 2px 5px rgba(50, 50, 50, 0.2);
  box-shadow: -2px 2px 5px rgba(50, 50, 50, 0.2);
}

.new-charge-type input[type="text"] {
  margin: 0;
}

.new-charge-type div {
  margin: 4px 0 0 20px;
}

.cancel-ct-btn {
  margin: 0 20px 0 0;
}

/* add/edit pitch modal */
#modal_pitchtype hr {
  margin: 5px 0;
  border-bottom-color: #999;
}

#modal_pitchtype #extras-table th,
#modal_pitchtype #extras-table td {
  vertical-align: middle;
}

#modal_pitchtype #extras-table .other_name {
  margin: 0 5px;
}

#modal_pitchtype .has_other_content {
  display: none;
}

#extras-table th {
  font-weight: bold;
}

#extras-table {
  margin-top: 10px;
  border-bottom: 1px solid #ddd;
}

#extras-table select.mini {
  margin: 0;
}

.additional_form_content {
  display: none;
}

.categorylist input {
  float: left;
}

.categorylist .categoryIcon {
  float: left;
}

.searchtypes {
  margin-top: 10px;
}

.searchtypes li {
  height: auto;
  line-height: 16px;
  vertical-align: middle;
  color: #999;
  padding-left: 35px;
  padding-top: 0.5em;
  margin-bottom: 0.5em;
}

.searchtypes span.img {
  float: left;
  width: 40px;
  margin-left: -40px;
}

.searchtypes .categoryIcon.motorhomes {
  margin-left: 5px;
}

.searchtypes .categoryIcon.lodges {
  margin-left: 8px;
}

.searchtypes .categoryIcon.tourers {
  margin-left: 6px;
}

.searchtypes .categoryIcon.caravans {
  margin-left: 3px;
}

.searchtypes .categoryIcon.tents {
  margin-left: 10px;
}

.onsite .searchtypes {
  margin-left: 5px;
}

.byo .searchtypes {
  margin-left: 5px;
}

.persons_included {
  white-space: nowrap;
  display: inline-block;
}

/* popovers */
.tooltip-popover i {
  opacity: 0.4;
  color: #333;
}

.tooltip-popover:hover i {
  opacity: 1;
}

.popover-content p:last-of-type {
  margin: 0;
}

/* category popovers */
.category_tooltip .icon-info-sign {
  opacity: 0.2;
}

.category_tooltip:hover .icon-info-sign {
  opacity: 1;
}

#modal_pitchtype .popover {
  width: 400px;
  max-width: 400px;
}

#modal_pitchtype .popover img {
  float: left;
  margin-right: 12px;
  border: 1px solid #ccc;
  width: 60px;
  height: 45px;
}

#modal_pitchtype .popover-title {
  font-weight: bold;
}

#pitchtype_categories .subcat {
  padding-left: 40px;
}

/* !Rates ================================================== */

.rates-action-buttons {
  display: inline-block;
  float: right;
}

.charge-type-wrapper {
  position: relative;
}

.charge-type-wrapper .warning_losenge {
  position: relative;
  right: auto;
  left: auto;
  display: inline-block;
  float: right;
  margin-right: 30px;
  top: 5px;
  bottom: auto;
}

.charge-type-wrapper .delete-btn {
  margin: 4px 5px 0 0;
}

.required_field {
  border: 1px solid red !important;
  background-color: #fcf8e3 !important;
}

.adult-price-cell {
  position: relative;
}

.adult-price-cell.has-adult-price-error {
  padding-bottom: 44px;
}

.adult-price-error {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  color: #a94442;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
}

.age-range {
  color: #999;
}

.edit-link {
  font-size: smaller;
}

/* rates batch update form */
#form_batch_update_rates .help-block {
  font-weight: normal;
  margin-top: 0;
}

#form_batch_update_rates th label {
  text-align: right;
}

#form_batch_update_rates .help-block.pull-left {
  width: 300px;
  margin-left: 30px;
}

.photo_level label.checkbox {
  line-height: 1.5;
}

.as_checkbox ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
  clear: both;
}

.as_checkbox label {
  font-weight: normal;
}

.as_checkbox.has-error label {
  color: #b94a48;
}

.as_checkbox.inline li {
  float: left;
  margin-right: 30px;
}

.days-toggle {
  margin-right: 0.5em;
}

.days-toggle i {
  opacity: 0.5;
}

.section-label {
  font-size: 1.2em;
  font-weight: bold;
}

td.section-start {
  border-top: 1px solid #999999;
}

.extra-row th,
.extra-row td {
  vertical-align: middle;
}

.extra-row td input,
.extra-row td select {
  margin-bottom: 0;
}

.pitch-row th,
.extra-row th {
  padding-left: 25px !important;
}

.pitch-row,
.extra-row {
  background-color: #eeeeee;
}

.pricing-type {
  width: auto;
}

/* rates weekly view */
.charge-type-wrapper {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 5px 0 10px 0;
}

.pitch-type1.inactive + .accordion-body .charge-type-wrapper {
  background: #dedede;
  color: #999999;
}

.charge-type-options {
  margin: 3px 10px 0 0;
  float: right;
}

.charge-type-options label {
  margin: 0;
}

.charge-type-options.allocation {
  font-weight: bold;
  margin-right: 30px;
}

.charge-type-toggle h4 {
  padding: 3px 5px;
  margin: 0;
}

.charge-type-toggle h4:hover {
  background-color: #d9e9f1;
}

.chargetype-form {
  overflow: auto;
}

table.chargetype_calendar {
  margin: 0;
  border-top: 1px solid #ddd;
}

table.chargetype_calendar th {
  background-color: #e4f0f5;
  text-align: center;
  font-weight: bold;
}

table.chargetype_calendar td {
  text-align: center;
  vertical-align: middle;
}

table.chargetype_calendar th.date {
  min-width: 100px;
  max-width: 12%;
}

table.chargetype_calendar th.warning {
  background-image: url("../img/warning_flash2.png") !important;
  background-repeat: no-repeat !important;
  background-position: right top !important;
}

table.chargetype_calendar th.no_rate {
  background-image: url("../img/warning_flash.png") !important;
  background-repeat: no-repeat !important;
  background-position: right top !important;
}

table.chargetype_calendar td.warning {
  color: #c00;
  font-weight: bold;
}

.pitch-type1.inactive + .accordion-body table.chargetype_calendar td,
.inactive table.chargetype_calendar td {
  background-color: white !important;
}

table.chargetype_calendar th,
table.chargetype_calendar td {
  padding: 2px 3px;
}

table.chargetype_calendar td.rowlabel {
  text-align: right;
  width: 180px;
  min-width: 140px;
  vertical-align: middle;
  border-right: 1px solid #ddd;
  font-size: 12px;
  line-height: 1.2;
}

table.chargetype_calendar th.weekend {
  background-color: #d9e9f1;
}

table.chargetype_calendar td.weekend {
  background-color: #ecf8fa;
}

table.chargetype_calendar td.past {
  color: #aaa;
}

table.chargetype_calendar select {
  width: auto;
  margin: 0;
}

table.chargetype_calendar input[type="text"],
table.chargetype_calendar input[type="number"] {
  width: 50px;
  text-align: center;
  background-color: white;
  margin: 0;
  padding: 0;
  display: inline-block;
}

table.chargetype_calendar input[disabled] {
  border: none;
  color: #999999;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

table.chargetype_calendar .delete-btn .icon-trash {
  opacity: 0.4;
}

table.chargetype_calendar .delete-btn:hover .icon-trash,
table.chargetype_calendar .delete-btn:active .icon-trash {
  opacity: 1;
}

/* !rates date range view */
#date_range_table table {
  max-width: none;
  margin: auto;
}

#date_range_table {
  overflow-x: scroll;
  padding-bottom: 20px;
  margin-top: 20px;
}

#date_range_table table th {
  line-height: 1.2;
}

#date_range_table table .inactive {
  border-color: white !important;
}

#date_range_table table input[type="number"],
#date_range_table table input[type="text"] {
  text-align: center;
  padding: 0;
  width: auto !important;
  max-width: 120px;
  background-color: white;
}

[data-language="en-gb"] #date_range_table table input[type="number"],
[data-language="en-gb"] #date_range_table table input[type="text"] {
  width: 80px !important;
}

#hdtable_fixed_header thead tr,
#table_fixed_header thead tr {
  background-color: white;
}

#hdtable_fixed_header {
  z-index: 1070;
}

.tooltip-popover .overlap-warning {
  color: #be0000;
  opacity: 1;
  font-size: 1.2em;
}

.instructions {
  display: block;
  max-width: 800px;
  padding-bottom: 10px;
}

.data-entry td,
.data-entry th {
  background-color: #eeeeee;
}

.data-entry .input-prepend,
.data-entry input {
  margin: 0 !important;
}

.data-entry .date-wrapper {
  width: 140px;
}

.data-entry .datePicker {
  min-width: 92px;
  padding: 6px;
  text-align: center;
}

.dates-info {
  font-size: smaller;
  font-weight: normal;
  margin-top: 0.3em;
  display: inline-block;
}

.batch_tariffs .opening-dates {
  display: inline-block;
  padding: 4px;
  border-radius: 4px;
  font-size: smaller;
  font-weight: normal;
}

.batch_tariffs .opening-dates p {
  margin: 0;
}

/* rates date range batch tariff form */
.batch_tariffs h2 {
  margin: 0;
}

#div_id_weekdays #id-batchTariffForm label:nth-child(8) {
  margin-top: 7px;
}

.asteriskField {
  display: none;
}

/* customize crispy forms */
.numberCircle {
  background: #cccccc;
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1em;
  margin-right: 5px;
  text-align: center;
  width: 1em;
  font-size: 1em;
}

.numberCircle.lrg {
  font-size: 31.5px;
  float: left;
  margin-top: -7px;
}

.introbullets {
  padding-left: 10px;
  margin-bottom: 20px;
  clear: both;
}

.people_extras {
  margin-left: 8px;
}

.people_extras.smaller {
  font-size: smaller;
}

.people_extras input[type="text"],
.people_extras input[type="number"] {
  margin: 2px 0 !important;
}

.warning_losenge {
  color: white;
  display: block;
  font-size: 10px;
  position: absolute;
  right: 0;
  bottom: -7px;
  background-color: red;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 3px;
  text-shadow: 0px -1px 0 #a01111;
}

.panel-heading .warning_losenge {
  top: -4px;
  bottom: auto;
}

.inactive-pt {
  position: relative;
  color: #999;
}

.inactive-pt .warning_losenge {
  background-color: #bbb;
  text-shadow: 0px -1px 0 #777;
  position: relative;
  left: 5px;
  bottom: 0;
  display: inline-block;
}

.pitch_losenge {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: white;
  padding: 3px 10px;
  margin-bottom: 14px;
  border: 1px solid #999;
  text-shadow: 0px 1px 0px #eee;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* used on allocation and photos */
.page_key hr {
  margin: 0 0 7px 0;
  border: 0;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #fff;
}

.page_key a {
  color: #555;
  text-decoration: underline;
}

.spacer-row {
  height: 6px;
}

.page_key td {
  line-height: 1.2;
  font-size: small;
}

.page_key .box {
  background-color: white;
  padding: 2px 10px;
}

.page_key .booking-status {
  height: 25px;
  width: 25px;
}

.page_key .equals {
  padding-left: 4px;
}

.page_key {
  padding: 4px 10px 8px;
  border-radius: 6px;
  background-color: #e4e4e4;
  position: relative;
  margin: 0 0 0 0;
  display: inline-block;
}

.photos_key td {
  padding: 0.2em 0;
}

.photos_key .gallery {
  width: 30px;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
  box-sizing: border-box;
  padding: 0;
  margin: 0 0.5em 0 0;
  float: none;
  display: inline-block;
}

.page_key .divider-line {
  border-bottom: 1px solid #555;
}

.dates-well {
  display: inline-block;
  margin-bottom: 4px;
  padding: 10px;
}

.disable-bookings {
  display: inline-block;
  background-color: #f2dede;
}

.month-selector {
  font-weight: bold;
  color: #111;
  font-size: 1.2em;
  background-color: #e4f0f5;
  margin-left: 0 !important;
  height: auto;
}

.year-overview {
  background-color: #e4f0f5;
}

/* opening dates */
.open-dates-formset [type="text"] {
  width: 140px !important;
  margin: 3px;
}

.opening-dates .checkbox-inline {
  display: block;
  font-weight: bold;
}

.opening-dates .checkbox-inline .tooltip-popover:focus {
  outline: none;
}

.opening-dates .open-dates-formset {
  border-top: 1px solid #dddddd;
  padding-top: 1em;
  margin-top: 1.5em;
}

.open-dates-formset th {
  border-top: none !important;
}

.open-dates-formset th:last-of-type {
  visibility: hidden;
}

.collapsed-panel-title p {
  margin: 0;
}

.collapsed-panel-title p:last-child {
  margin-bottom: 5px;
}

/* allocation 12 month calendar overview */
#twelve_mnth_overview .rowLabel {
  text-align: right;
  position: relative;
  line-height: 1.2;
}

#twelve_mnth_overview .warning_losenge {
  font-size: 8.5px;
  padding: 1px 3px;
  border-radius: 2px;
  position: relative;
  display: inline-block;
  bottom: auto;
  right: auto;
  top: -2px;
  left: auto;
}

#twelve_mnth_overview td {
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid white;
  border-left: 1px solid white;
}

#twelve_mnth_overview .date {
  font-weight: bold;
  text-align: center;
}

#twelve_mnth_overview .full {
  background-color: #dff0d8;
}

#twelve_mnth_overview .warn {
  background-color: #fcf8e3;
}

#twelve_mnth_overview .empty {
  background-color: #f2dede;
}

.pt-status {
  display: block;
  color: #333;
}

.inactive,
.inactive td {
  background: #dedede !important;
  color: #999999;
  filter: none !important;
}

.warning_losenge.not_active {
  background-color: #a0a0a0;
  text-shadow: 0px -1px 0 #777;
}

.inactive .charge-type-options .checkbox.checked {
  color: #555555;
}

#twelve_mnth_overview .pt-divider-row td {
  height: 5px;
  background: white;
  padding: 0;
  border: none;
}

/* !Offers ================================================== */
#offer-form .label_tag {
  text-align: right;
  width: 200px;
}

#offer-form .to-label {
  display: block;
  border-top: 1px solid #ddd;
  padding-top: 0.5em;
  margin: 0 0 0.5em;
}

.offer_name {
  font-weight: bold;
  width: 30%;
}

.table td.offer_ptct {
  padding-left: 15px;
  background: #f9f9f9;
}

.offer_ptct .ct-inactive {
  color: #999999;
  text-decoration: line-through;
}

td.overlapping {
  color: red;
}

td.overlapping .popover-content,
td.overlapping .popover-title {
  font-weight: normal;
  color: #555;
}

.nav-pills .offers .badge {
  background-color: #f89406 !important;
  color: white !important;
}

/* !Multisites / Manage sites ================================================== */
#sitename {
  position: absolute;
  left: 175px;
}

#sitename .dropdown-menu {
  width: auto;
  margin-bottom: 2em;
}

#sitename .dropdown-menu a {
  font-weight: bold;
}

#sitename .dropdown-menu .site-basic a {
  color: #777;
  font-weight: normal;
}

#sitename .dropdown-menu a .state {
  font-weight: normal;
  color: #238338;
}

#sitename .dropdown-menu a .state.off {
  color: #c70000;
}

#modal_flag_missing_site table,
#modal_flag_missing_site textarea {
  width: 100%;
  box-sizing: border-box;
}

/* current site block */
.currentCampsite {
  color: #555;
  font-weight: bold;
  margin-top: 7px;
  line-height: 1.2;
  display: inline-block;
  float: left;
}

.currentCampsite label {
  font-size: smaller;
  font-weight: normal;
  margin: 0;
  clear: both;
}

.currentCampsite [type="checkbox"] {
  margin: 2px 4px 0 0 !important;
  float: left;
}

.currentCampsite form {
  display: inline-block;
  margin-right: 1em;
}

.campsite-id {
  font-weight: normal;
  font-size: smaller;
}

.site-select {
  float: left;
  margin-right: 17px;
  top: 3px;
}

.is_staff .currentCampsite {
  margin-top: 3px;
}

.staff-only-link {
  font-weight: normal;
  margin-left: 0.3em;
  font-size: smaller;
}

.supplier-site-thermometer {
  border: 1px solid #aaa;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 130px;
}

.supplier-site-thermometer div {
  background-color: #ccc;
  height: 10px;
}

/* pre live status panel */
.activation-requested .pre-live-panel {
  display: none;
}

.pre-live-panel {
  background-color: #be0000;
  color: white;
  padding: 5px 10px 10px;
  margin-bottom: 16px;
  margin-top: -11px;
  box-shadow: inset 0 2px 3px #720303;
}

.pre-live-panel span {
  font-weight: bold;
}

.pre-live-panel .tooltip-popover i {
  opacity: 1;
  color: white;
}

.pre-live-panel .mini-thermometer-label {
  font-weight: normal;
  color: white;
  display: inline-block;
  vertical-align: text-top;
}

.pre-live-panel .supplier-site-thermometer {
  display: inline-block;
  border: 1px solid white;
  background-color: #8e0101;
}

.pre-live-panel .mini-thermometer {
  display: inline-block;
}

.pre-live-panel .popover-content,
.pre-live-panel .popover-title {
  font-weight: normal;
  color: #555;
}

.pre-live-panel .icon-info-sign {
  background-image: url("../img/glyphicons-halflings-white.png");
}

.activation-requested .container {
  width: 50%;
}

.activation-requested .well {
  border-color: #be0000;
  border-width: 4px;
  margin-top: 2em;
}

.mini-thermometer {
  display: block;
  margin-top: 5px;
  height: 15px;
}

#campsite_status .supplier-site-thermometer {
  float: right;
}

.supplier-site-thermometer div {
  background: #39b54a;
  background: linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -o-linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -moz-linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -webkit-linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -ms-linear-gradient(bottom, #176b2c 0%, #39b54a 80%);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #176b2c),
    color-stop(0.8, #39b54a)
  );
}

.mini-thermometer-label {
  display: inline-block;
  line-height: 11px;
  padding: 0;
  margin: 0 5px 0 0;
  vertical-align: top;
  text-decoration: underline;
  font-weight: normal !important;
}

/* missing site form */
#id-flagForm table {
  width: 100%;
}

#id-flagForm #id_comment {
  width: 96%;
  height: 110px;
}

/* category icons */
.categoryIcon {
  background: url("../../pitchup/images2/sprites-general.png") no-repeat left
    top;
  display: block;
  float: left;
  height: 19px;
  margin: 0 2px;
  vertical-align: middle;
}

#pitchtype_categories .categoryIcon {
  float: none;
  display: inline-block;
}

#pitchtype_categories label {
  display: block;
}

.inline-cat-icon {
  width: 37px;
  display: inline-block;
}

.searchtypes.inline-cat-icon {
  margin-top: 0;
}

#accomodation_table .searchtypes.inline-cat-icon {
  margin-top: 2px;
}

.categoryIcon.tents,
.categories_1,
.byo-categories_1,
.byo-pitchtype-categories_1 {
  background-position: left top;
  width: 19px;
}

.categoryIcon.yurts,
.categories_4,
.non-byo-categories_1,
.non-byo-pitchtype-categories_1 {
  background-position: -21px -1px;
  width: 24px;
}

.categoryIcon.lodges,
.categories_6,
.non-byo-categories_3,
.non-byo-pitchtype-categories_3 {
  background-position: -47px top;
  width: 17px;
}

.categoryIcon.tourers,
.categories_2,
.byo-categories_2,
.byo-pitchtype-categories_2 {
  background-position: -67px -1px;
  width: 26px;
}

.categoryIcon.motorhomes,
.categories_3,
.byo-categories_3,
.byo-pitchtype-categories_3 {
  background-position: -97px -1px;
  width: 25px;
}

.categoryIcon.caravans,
.categories_5,
.non-byo-categories_2,
.non-byo-pitchtype-categories_2 {
  background-position: -126px -1px;
  width: 32px;
}

.categoryIcon.disabled.tents {
  background-position: left -43px;
}

.categoryIcon.disabled.yurts {
  background-position: -21px -44px;
}

.categoryIcon.disabled.lodges {
  background-position: -47px -43px;
}

.categoryIcon.disabled.tourers {
  background-position: -67px -44px;
}

.categoryIcon.disabled.motorhomes {
  background-position: -97px -44px;
}

.categoryIcon.disabled.caravans {
  background-position: -126px -44px;
}

.booktable tr.pt-no-availability .categoryIcon.tents {
  background-position: left -21px;
}

.booktable tr.pt-no-availability .categoryIcon.yurts {
  background-position: -21px -22px;
}

.booktable tr.pt-no-availability .categoryIcon.lodges {
  background-position: -47px -21px;
}

.booktable tr.pt-no-availability .categoryIcon.tourers {
  background-position: -67px -22px;
}

.booktable tr.pt-no-availability .categoryIcon.motorhomes {
  background-position: -97px -22px;
}

.booktable tr.pt-no-availability .categoryIcon.caravans {
  background-position: -126px -22px;
}

.searchtypes .categoryIcon.tents,
.searchtypes .categories_1,
.searchtypes .byo-categories_1,
.searchtypes .byo-pitchtype-categories_1 {
  margin-left: 10px;
  margin-top: -3px;
}

.searchtypes .categoryIcon.yurts,
.searchtypes .categories_4,
.searchtypes .non-byo-categories_1,
.searchtypes .non-byo-pitchtype-categories_1 {
  margin-left: 7px;
  margin-top: -2px;
}

.searchtypes .categoryIcon.lodges,
.searchtypes .categories_6,
.searchtypes .non-byo-categories_3,
.searchtypes .non-byo-pitchtype-categories_3 {
  margin-left: 10px;
  margin-top: -3px;
}

.searchtypes .categoryIcon.tourers,
.searchtypes .categories_2,
.searchtypes .byo-categories_2,
.searchtypes .byo-pitchtype-categories_2 {
  margin-left: 6px;
  margin-top: -1px;
}

.searchtypes .categoryIcon.motorhomes,
.searchtypes .categories_3,
.searchtypes .byo-categories_3,
.searchtypes .byo-pitchtype-categories_3 {
  margin-left: 7px;
}

.searchtypes .categoryIcon.caravans,
.searchtypes .categories_5,
.searchtypes .non-byo-categories_2,
.searchtypes .non-byo-pitchtype-categories_2 {
  margin-left: 3px;
  margin-top: -2px;
}

/* !Forms ================================================== */

.psuedo-disabled {
  background-color: #eeeeee !important;
}

.input-leading-label {
  margin-bottom: -7px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.input-leading-label label {
  margin-right: 4px;
}

#facilities .grid-item > label {
  color: #555;
  background-color: #eee;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 3px 0;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px 2px 20px;
  display: block;
}

#facilities .grid-item > label:hover {
  color: #333;
  background-color: #dedede;
}

#facilities label.always_show,
.always_show {
  font-weight: bold;
  color: black;
}

#facilities .grid-item > label img {
  margin-top: -4px;
}

#facilities .grid-item > input[type="checkbox"] {
  margin: 0 0 2px -16px;
}

.img-fluid {
  margin-right: 2em;
}

.feature-description {
  border-bottom: 1px solid #ddd;
  padding: 0 0 1em;
  margin: 0 0 1em;
}

.tell-me-more {
  font-weight: normal;
  text-wrap: nowrap;
}

.tell-me-more i {
  margin-right: 4px;
}

#facilities hr {
  margin: 6px 0;
}

.upload-button-holder button + button {
  margin-left: 1em;
}

/* !Avatars ================================================== */
.avatar {
  float: left;
  position: relative;
  border: 3px solid white;
  background-color: white;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  min-width: 48px;
  min-height: 48px;
}

.avatar a {
  display: inline-block;
}

.avatar img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

/* hide the flag submit button, using the modal to submit */
#id-flagSubmit {
  display: none;
}

.new-flag {
  display: inline-block;
  background: #f50005;
  text-transform: uppercase;
  color: white;
  padding: 0.15em 0.3em;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: skew(-5deg) rotate(-4deg);
  -ms-transform: skew(-5deg) rotate(-4deg);
  transform: skew(-5deg) rotate(-4deg);
  border-radius: 2px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 10px;
}

/* stats */
.stats-page .well-special {
  margin: 0 12px 10px 0;
  padding: 8px 9px 3px 9px;
  min-height: 24px;
}

.stats_options .well-special:last-of-type {
  margin-right: 0;
}

.stats_options .stats-filter-form {
  display: inline-block;
  margin-right: 2em;
}

.stats-page .well-special ul {
  margin: 0;
}

.stats-page .form-inline select {
  margin: 0;
}

.stats_instructions li {
  line-height: 1.8;
}

.stats_instructions {
  margin-bottom: 20px;
}

.keybutton {
  border: 1px solid #dedede;
  border-radius: 4px;
  padding: 0 4px;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(241, 241, 241, 1) 50%,
    rgba(225, 225, 225, 1) 51%,
    rgba(246, 246, 246, 1) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, rgba(255, 255, 255, 1)),
    color-stop(50%, rgba(241, 241, 241, 1)),
    color-stop(51%, rgba(225, 225, 225, 1)),
    color-stop(100%, rgba(246, 246, 246, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(241, 241, 241, 1) 50%,
    rgba(225, 225, 225, 1) 51%,
    rgba(246, 246, 246, 1) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(241, 241, 241, 1) 50%,
    rgba(225, 225, 225, 1) 51%,
    rgba(246, 246, 246, 1) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(241, 241, 241, 1) 50%,
    rgba(225, 225, 225, 1) 51%,
    rgba(246, 246, 246, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(241, 241, 241, 1) 50%,
    rgba(225, 225, 225, 1) 51%,
    rgba(246, 246, 246, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6', GradientType=0);
}

#chartdiv {
  height: 500px;
  margin: 10px 0 40px;
}

.annotation_holiday {
  font-size: 12px !important;
  width: auto !important;
  height: 12px !important;
  padding: 2px;
  color: #555 !important;
  border-color: #555 !important;
  background-color: #eee;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  line-height: 12px;
  vertical-align: middle;
}

.dygraph-legend {
  background-color: transparent !important;
  left: 87px !important;
  top: 25px !important;
}

#chartdiv input[type="text"] {
  width: 30px;
  margin: -10px 0 0 0;
  text-align: center;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
}

/* !stripe banner */
.stripe_banner {
  width: 600px;
  height: 80px;
  border: 1px solid #27b148;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: block;
}

.sb_logo {
  width: 150px;
  height: 80px;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/stripebanner_payup_logo.png") no-repeat left top;
}

.sb_msg {
  width: 450px;
  height: 80px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4em;
  line-height: 60px;
  font-weight: bold;
  color: #000;
  vertical-align: middle;
  text-align: left;
  background-color: #b8e5fd;
  display: block;
  padding: 0 0 0 10px;
  white-space: nowrap;
}

.sb_sub {
  width: 441px;
  height: 30px;
  position: absolute;
  left: 160px;
  top: 50px;
  font-size: 0.9em;
  font-weight: normal;
  color: #555;
  display: block;
  line-height: 1;
}

.page-tour-button {
  margin-bottom: 0.5em;
}

#flag_form_submit_id {
  display: none;
}

/* ringcentral */
.ringcentral {
  position: fixed;
  bottom: 0;
  right: 10px;
  cursor: pointer;
}

/* Hi-res/retina display CSS sprites */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (-o-min-device-pixel-ratio: 3/2),
  only screen and (min--moz-device-pixel-ratio: 1.5),
  only screen and (min-device-pixel-ratio: 1.5) {
  .xsprite,
  .categoryIcon,
  .review_rating,
  .rating_overall {
    background-image: url("../../pitchup/images2/sprites-general.x2.png");
    -moz-background-size: 600px 600px;
    -ie-background-size: 600px 600px;
    -o-background-size: 600px 600px;
    -webkit-background-size: 600px 600px;
    background-size: 600px 600px;
  }

  .recommend {
    background-image: url("../../pitchup/images2/sprites-campsite.x2.png");
    -moz-background-size: 600px 600px;
    -ie-background-size: 600px 600px;
    -o-background-size: 600px 600px;
    -webkit-background-size: 600px 600px;
    background-size: 600px 600px;
  }
}

@media screen {
  #printSection {
    display: none;
  }
}

@media print {
  body.bookings.modal-open * {
    visibility: hidden;
  }

  #printSection,
  #printSection * {
    visibility: visible;
  }

  #printSection {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
  }

  #booking-print {
    position: absolute;
    left: 0;
    top: 0;
    max-height: auto !important;
    overflow: visible !important;
  }
}

.staff-toggle label {
  pointer-events: none;
  cursor: default;
}

.staff-toggle input[type="checkbox"] {
  cursor: pointer;
}

/* header layout adjustments on small screens */
@media (max-width: 866px) {
  #headertop {
    height: auto;
    min-height: 40px;
  }

  #primarytabs {
    min-height: 60px;
  }

  #headernav {
    padding-top: 0;
    margin-right: 0;
    float: none !important;
    position: absolute;
    right: 15px;
    top: 70px;
    color: white;
  }

  #headernav a {
    color: white;
  }

  .responsive-tabs.nav-tabs {
    margin-top: 12px !important;
  }
}

@media (max-width: 768px) {
  #sitename {
    left: 158px;
  }

  .site-select {
    margin-right: 8px;
  }

  .currentCampsite {
    margin-top: 5px;
    float: none;
    display: block;
  }

  .staff-only-options {
    display: block;
    position: relative;
    left: -140px;
    top: -4px;
  }

  .staff-only-link:first-of-type::before {
    content: "\A";
    display: block;
  }

  .admin .menu-list.language {
    position: absolute;
    top: 37px;
    right: 15px;
  }

  #headertop {
    min-height: 72px;
  }

  #tipis {
    display: none;
  }

  #headernav {
    top: 102px;
  }

  .currentCampsite form {
    margin-right: 0.5em;
  }

  #campsite_status {
    margin: 0 0 0.3em 0;
  }

  #subnav {
    display: block;
  }

  #subnav .tourlink {
    width: 100%;
  }
}

.api-upgrade-form {
  margin: 1em 0;
}

/* combat django4 extra divs around radio selects and checkboxmultiple widgets, plus ancient bootstrap */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] {
  margin: -1px 0 0 0;
  vertical-align: middle;
  position: relative;
}
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
  margin-left: -20px;
}
