@import url("https://fonts.googleapis.com/css?family=Nunito:400,600|Work+Sans:400,600|Roboto:400,600|Roboto+Slab:400,600|Raleway:400,600|Lato:400,600|Oswald:400,600|Dosis:400,600");
:root {
  --main-color: #42424F;
  --hover-color: #23527C;
  --main-text-color: rgb(64, 64, 78);
  --main-bg: rgb(235, 235, 235);
  --main-font-family: Lato, sans-serif;
}

:root {
  --highlight-base-color: var(--main-color);
  --header-font-family: var(--main-font-family);
  --header-text-color: var(--main-text-color);
  --feature-color: var(--main-color);
  --button-color: var(--main-color);
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
  box-sizing: border-box;
}

body {
  -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
  -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
  -webkit-user-select: text; /* prevent copy paste, to allow, change 'none' to 'text' */
  font-family: "Lato", sans-serif;
  font-family: var(--main-font-family);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  font-size: 14px;
  overflow-x: hidden;
  background-color: rgb(235, 235, 235);
  background-color: var(--main-bg);
  --highlight-base-color: var(--main-color);
  --header-font-family: var(--main-font-family);
  --header-text-color: var(--main-text-color);
  --feature-color: var(--main-color);
}

.header-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 290px;
  background-color: #42424F;
  background-color: var(--main-color);
  transition: background-color 0.5s;
  z-index: -1;
}

.header-spacer {
  background-color: #42424F;
  background-color: var(--main-color);
  display: block;
  height: 76px;
  position: fixed;
  transition: height 0.3s ease-in-out, background-color 0.5s;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .header-spacer {
    height: 58px;
  }
}

a {
  text-decoration: none;
  color: var(--main-color-new);
  cursor: pointer;
}
a:hover {
  color: var(--main-color-dark);
}
a.anchor {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden;
}
a .Toastify__spinner {
  display: block;
}

blockquote {
  margin-top: 2em;
  margin-bottom: 2em;
}

em {
  font-style: italic;
  font-weight: 600;
}

p {
  font-weight: 300;
}
p a {
  text-decoration: underline;
}

.text-lg {
  font-size: 120%;
}

.text-sm {
  font-size: 80%;
}

.text-success {
  color: rgb(50, 197, 95);
}

.text-warning {
  color: #f0ad4e;
}

.text-danger {
  color: #d9534f;
}

section {
  margin-top: 0.5em;
  margin-bottom: 3em;
}

h1, h2, h3, .h1, .h2, .h3 {
  color: rgb(64, 64, 78);
  font-family: "Lato", sans-serif;
  color: var(--header-text-color);
  font-family: var(--header-font-family);
  transition: color 0.5s;
}

h4, h5, .h4, .h5 {
  color: rgb(64, 64, 78);
  font-family: "Lato", sans-serif;
  color: var(--header-text-color);
  font-family: var(--main-font-family);
  transition: color 0.5s;
}

h1, .h1 {
  font-size: 3em;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
}

h2, .h2 {
  font-size: 2em;
  font-weight: 500;
  margin-top: 0.5em;
}

h3, .h3 {
  font-size: 1.4em;
  font-weight: 400;
  margin-top: 0.5em;
}

h4, .h4 {
  text-transform: none;
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 0.5em;
}

h5, .h5 {
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 600;
  margin-top: 0.5em;
}

code {
  word-break: normal;
  overflow-wrap: break-word;
}

img.banner-image {
  width: 100%;
}

ul {
  text-align: left;
}
ul.card-list {
  padding: 0;
  margin-top: 20px;
}
ul.after-text {
  margin-top: 1em;
}
ul.button-hlist {
  padding: 0;
  margin-top: 0px;
  list-style: none;
  display: inline-block;
}
ul.button-hlist li {
  float: left;
}
ul.no-bullet {
  list-style: none;
}
ul.no-indentation {
  padding-left: 1em;
}

li {
  font-weight: 300;
}
li.card {
  list-style: none;
  margin: 0;
  margin-bottom: 1em;
}

.base {
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column;
  margin: 64px auto 0;
  padding: 15px 1em;
  max-width: 1140px;
}

.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}

.inline-flex {
  display: inline-flex;
}
.inline-flex.column {
  flex-direction: column;
}

.content {
  background-color: #fff;
  padding: 2em;
  padding-bottom: 5em;
  text-align: left;
  min-width: 2.1rem;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .content {
    padding: 1em;
  }
}

.card {
  border-radius: 5px;
  background-color: #f8f8f8;
  font-size: 15px;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
}
.card h3 {
  font-size: 1em;
  font-weight: 700;
  margin-top: 0;
}
.card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #9191a5;
  text-transform: capitalize;
}
.card h4.no-caps {
  text-transform: none;
}
.card .card-header {
  font-weight: 600;
  color: #fff;
  padding: 1.2em 2em;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card .card-header h2 {
  color: #fff;
}
.card .card-header span {
  margin-top: 0px;
}
.card .card-header.text-header {
  padding: 2em;
}
.card .card-body {
  padding: 2em 2em 1em;
}
.card .card-body section {
  margin: 10px 0 25px;
}
.card .card-body ul.bullet-text-list {
  list-style-type: disc;
}
.card .card-footer {
  padding: 1em 2em;
}
.card .btn {
  font-size: 1em;
  font-weight: 600;
  padding: 12px 2em 10px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.card textarea {
  height: 6em;
  font-size: 1em;
  font-weight: 300;
  padding: 1.2rem 1.2rem;
}

.btn {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  font-size: 1em;
  padding: 12px 38px;
  background-color: #42424F;
  border: 2px solid #42424F;
  background: var(--button-color);
  border: 2px solid var(--button-color);
  display: inline-block;
  color: #fff;
  box-shadow: none;
  outline: none;
  transition: background-color 0.3s, border-color 0.3s;
}
.btn.active, .btn:hover, .btn:active, .btn:focus {
  background: #23527C;
  border: 2px solid #23527C;
  background: var(--hover-color);
  border: 2px solid var(--hover-color);
  color: #fff;
}

.btn-lg {
  padding: 19px 54px;
}

.btn-sm {
  padding: 8px 28px;
}

.btn-tiny, .btn-xs {
  padding: 6px 14px;
  font-size: 0.8em;
}

.btn-half-width {
  width: 50%;
  margin-right: auto;
  white-space: unset;
}

.btn-full-width {
  width: 100%;
  display: block;
  margin-right: auto;
  white-space: unset;
}

.btn-default {
  background-color: #42424F;
  border: 2px solid #42424F;
  background-color: var(--button-color);
  border: 2px solid var(--button-color);
  color: #fff;
}
.btn-default.active, .btn-default:hover, .btn-default:active, .btn-default:focus {
  background: #23527C;
  border: 2px solid #23527C;
  background: var(--hover-color);
  border: 2px solid var(--hover-color);
  color: #fff;
}

.btn-success {
  background-color: rgb(50, 197, 95);
  border-color: rgb(50, 197, 95);
}

.btn-info {
  background-color: #777777;
  border-color: #777777;
}

.btn-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-danger {
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-inverted {
  color: #42424F;
  color: var(--main-color);
  background-color: #fff;
  border-color: #fff;
}

.btn[disabled], .btn-disabled {
  background-color: #eeeeee;
  border-color: #eeeeee;
  opacity: 1;
  cursor: not-allowed;
}
.btn[disabled].active, .btn[disabled]:hover, .btn[disabled]:active, .btn[disabled]:focus, .btn-disabled.active, .btn-disabled:hover, .btn-disabled:active, .btn-disabled:focus {
  background-color: #eeeeee;
  border-color: #eeeeee;
  opacity: 1;
}

.btn-loading, .loading {
  cursor: wait;
  position: relative;
  color: transparent !important;
}
.btn-loading:before, .loading:before {
  position: absolute;
  height: 24px;
  width: 24px;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
  content: "";
  border-radius: 24px;
  background-clip: padding-box;
  border: rgba(255, 255, 255, 0.25) 2px solid;
  border-top-color: #42424F;
  border-top-color: var(--button-color);
  animation: animation-rotate 750ms linear infinite;
}

.loading.large:before {
  top: 25%;
  animation: animation-rotate-large 750ms linear infinite;
}

.btn-loading:before {
  border-top-color: #fff;
}

@keyframes animation-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animation-rotate-large {
  0% {
    transform: scale(3) rotate(0deg);
  }
  100% {
    transform: scale(3) rotate(360deg);
  }
}
.btn-secondary {
  background-color: transparent;
  color: #42424F;
  border: 2px solid #42424F;
  color: var(--button-color);
  border: 2px solid var(--button-color);
}
.btn-secondary.btn-success {
  color: rgb(50, 197, 95);
  border-color: rgb(50, 197, 95);
}
.btn-secondary.btn-info {
  color: #777777;
  border-color: #777777;
}
.btn-secondary.btn-warning {
  color: #f0ad4e;
  border-color: #f0ad4e;
}
.btn-secondary.btn-danger {
  color: #d9534f;
  border-color: #d9534f;
}
.btn-secondary.btn-inverted {
  color: #fff;
  border-color: #fff;
}
.btn-secondary.btn-disabled {
  color: #eeeeee;
  border-color: #eeeeee;
  opacity: 1;
  cursor: not-allowed;
}
.btn-secondary.btn-disabled.active, .btn-secondary.btn-disabled:hover, .btn-secondary.btn-disabled:active, .btn-secondary.btn-disabled:focus {
  color: #eeeeee;
  border-color: #eeeeee;
  opacity: 1;
}
.btn-secondary.active, .btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {
  background-color: transparent;
  border: 2px solid #23527C;
  color: #23527C;
  border: 2px solid var(--hover-color);
  color: var(--hover-color);
}
.btn-secondary.btn-loading:before {
  border-top-color: #42424F;
  border-top-color: var(--button-color);
}
.btn-secondary.with-badge .btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
}
.btn-secondary.with-badge .number {
  color: #42424F;
  color: var(--button-color);
}

.top_nav {
  background-color: #42424F;
  background-color: var(--main-color);
  display: flex;
  left: 0;
  justify-content: space-between;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.5s;
  width: 100%;
  z-index: 3;
}
.top_nav .nav-logo {
  display: none;
}
.top_nav .mobile-menu-button {
  display: none;
  color: #fff;
  align-items: center;
}
.top_nav .mobile-menu-button i {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .top_nav .mobile-menu-button {
    display: flex;
  }
}
.top_nav .mobile-menu-button.with-number {
  margin-right: 1em;
}
.top_nav .mobile-menu-button.with-number i {
  margin-right: 0;
}
.top_nav .mobile-menu-button .number {
  color: var(--main-color);
}
.top_nav .btn {
  color: #fff;
  background-color: transparent;
  transition: padding 0.3s ease-in-out, opacity 0.3s ease-in-out, max-width 0.3s ease-in-out, background-color 0.5s, border-color 0.5s;
}
@media screen and (max-width: 1095px) {
  .top_nav .btn {
    padding: 3px 8px;
  }
}
.top_nav .btn.btn-default {
  border-color: #fff;
}
.top_nav .btn.btn-secondary {
  border-color: transparent;
  text-transform: none;
}
.top_nav .btn.btn-secondary:hover {
  border-color: transparent;
}
.top_nav .btn.collapsable {
  opacity: 1;
  max-width: 300px;
}
.top_nav.collapsed .btn.collapsable {
  opacity: 0;
  max-width: 0;
  margin-left: 0;
  padding: 0;
}
.top_nav .right_block {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
  position: relative;
}

.page .header {
  min-height: 250px;
  padding-bottom: 1em;
}

.data-item {
  margin-bottom: 1em;
  font-weight: 300;
}
.data-item p {
  padding-top: 0 !important;
}

.flex-line .avatar {
  margin-right: 1em;
}

.reservation-line {
  padding: 0 10px;
  border-radius: 4px;
}
.reservation-line.cancelled .date-box {
  background: #d9534f !important;
}
.reservation-line.enquiry .date-box {
  background-color: var(--main-color);
  background: repeating-linear-gradient(45deg, #999999, #999999 5px, #a8a8a8 5px, #a8a8a8 10px);
}

.date-box {
  display: block;
  margin-right: 20px;
  background-color: #42424F;
  background-color: var(--main-color);
  border-radius: 4px;
  color: white;
  padding: 5px 5px 7px;
  text-align: center;
  text-transform: uppercase;
  min-width: 40px;
  font-size: 18px;
}
.date-box span {
  line-height: 15px;
  display: block;
}
.date-box .date-box-month {
  font-size: 10px;
}
.date-box .date-box-year {
  font-size: 10px;
}

ul.horizontal-bookmark-nav {
  list-style: none;
  padding: 0;
  font-size: 16px;
  text-align: center;
  margin-top: 1.5em;
}
ul.horizontal-bookmark-nav li {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}
ul.horizontal-bookmark-nav li a {
  color: #333333;
  text-decoration: none;
  border-bottom: 3px solid #89a3df;
}

.InvoiceDetail {
  font-family: "Montserrat", "Open Sans", sans-serif;
  color: #2F3C51;
}
.InvoiceDetail .invoice-logo {
  margin: 0;
  max-width: 200px;
}
.InvoiceDetail .invoice-heading {
  display: block;
  font-size: 36px;
  line-height: 60px;
  font-weight: 600;
}
.InvoiceDetail .invoice-subheading {
  text-transform: uppercase;
  display: block;
  line-height: 24px;
  font-weight: 600;
}
.InvoiceDetail .invoice-text {
  display: block;
  line-height: 24px;
  font-weight: 300;
}
.InvoiceDetail .invoice-text.long {
  word-break: break-all;
}
.InvoiceDetail .invoice-details {
  flex: 1;
  max-width: 240px;
}
.InvoiceDetail .invoice-address {
  flex: 1;
  max-width: 240px;
}
.InvoiceDetail .invoice-address .invoice-address-details span {
  display: block;
}
@media (max-width: 650px) {
  .InvoiceDetail .invoice-address {
    max-width: none;
    text-align: left;
    margin-top: 2em;
  }
}
.InvoiceDetail .invoice-paid-stamp {
  display: block;
  position: absolute;
  transform: rotate(-30deg);
  top: 30%;
  left: 20%;
  font-size: 80px;
  font-weight: 600;
  padding: 10px 20px;
  border: 15px solid;
  color: #42424F;
  border-color: #42424F;
  color: var(--main-color);
  border-color: var(--main-color);
}
@media (max-width: 650px) {
  .InvoiceDetail .invoice-paid-stamp {
    font-size: 40px;
    border: 5px solid;
  }
}
.InvoiceDetail .invoice-table {
  width: 100%;
}
.InvoiceDetail .invoice-table th, .InvoiceDetail .invoice-table .th {
  font-weight: 700;
  font-size: 14px;
}
.InvoiceDetail .invoice-table td, .InvoiceDetail .invoice-table th {
  vertical-align: top;
}
.InvoiceDetail .invoice-table td {
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 15px;
}
.InvoiceDetail .invoice-table td.no-border {
  border-bottom: 0;
  padding-bottom: 0;
}
.InvoiceDetail .invoice-table .invoice-item-description {
  padding-right: 2em;
}
@media (max-width: 650px) {
  .InvoiceDetail .invoice-table .invoice-item-description {
    padding-right: 0;
  }
}
.InvoiceDetail .invoice-table .invoice-item-total {
  font-size: 16px;
  font-weight: 600;
  color: #2F3C51;
}
.InvoiceDetail .invoice-table .invoice-item-due {
  font-size: 16px;
  font-weight: 600;
  color: #42424F;
}
.InvoiceDetail .invoice-table .invoice-column {
  width: 15%;
}
@media (max-width: 650px) {
  .InvoiceDetail .invoice-table .invoice-column {
    width: 40%;
  }
}

.invoice-list table {
  width: 100%;
}
.invoice-list td {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}
.invoice-list tr:last-child td {
  border-bottom: 0;
  padding-bottom: 0;
}

.consent-record .consent-checkbox {
  padding-top: 4px;
}
.consent-record .consent-checkbox .checkbox-input {
  padding: 0;
}

.number-in-icon-badge {
  display: grid;
  justify-items: center;
  align-items: center;
}
.number-in-icon-badge .material-icons {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.number-in-icon-badge .number {
  font-weight: 600;
  grid-column: 1/-1;
  grid-row: 1/-1;
}