/**
 * Helper which combines all variables, mixins, functions and resets
 */

/**
    Site breakpoints
 */

/**
 * Colors, pallets, gradients etc.
 */

/*
 * Parent mixins
 * They are used in text style mixins which use same parameters.
 */

/*
 * Child mixins
 */

body {
  font-family: Brandon, "Didact Gothic", "Open Sans", sans-serif;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

p {
  color: #3b3b3b;
}

body a {
  color: #fc2516;
}

body a .active,
body a:hover {
  color: #fc2516;
}

.reservation-system {
  float: left;
  width: 100%;
}

.reservation-system .reservation-types {
  display: flex;
  flex-direction: column;
}

.reservation-system .reservation-types button {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #757575;
  padding: 4px 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.reservation-system .reservation-types button.is-active {
  background: #fc2516;
  color: #FFFFFF;
}

.reservation-system .reservation-date {
  display: flex;
  flex-direction: row;
  padding: 16px 0;
}

.reservation-system .reservation-date .icon {
  padding: unset;
}

.reservation-system .reservation-date .icon-left {
  margin-right: auto;
}

.reservation-system .reservation-date .icon-right {
  margin-left: auto;
}

.reservation-system .reservation-date .icon svg {
  display: block;
  width: 24px;
  height: 24px;
  transition: 0.3s ease-in-out;
}

.reservation-system .reservation-date .icon svg:hover {
  fill: #fc2516;
}

.reservation-system .reservation-date h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #707070;
  text-align: center;
  display: flex;
  cursor: pointer;
}

.reservation-system .reservation-date .calendar {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  transition: 0.3s ease-in-out;
  fill: #fc2516;
}

.reservation-system .reservation-container {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.reservation-system .reservation-container .fade {
  position: absolute;
  display: block;
  height: 100%;
  width: 80px;
  background-size: 100%;
  z-index: 7;
  pointer-events: none;
  transition: all 250ms ease-out;
}

.reservation-system .reservation-container .fade.is-hidden {
  opacity: 0;
}

.reservation-system .reservation-container .fade-left {
  left: -24px;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 55%, #fff 65%, #fff 100%);
}

.reservation-system .reservation-container .fade-right {
  right: -24px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 55%, #fff 65%, #fff 100%);
}

.reservation-system .table-container {
  width: 100%;
  overflow-x: scroll;
}

.reservation-system table {
  min-width: 616px;
  background: #F2F2F2;
}

.reservation-system table thead {
  background-color: #818181;
  color: #FFFFFF;
}

.reservation-system table thead .fixed-column td {
  background-color: #818181;
  border-right: 1px solid #757575;
}

.reservation-system table thead td {
  border-left: 1px solid #757575;
  border-right: 1px solid #757575;
}

.reservation-system table tbody tr {
  border-bottom: 1px solid #E3E3E3;
}

.reservation-system table tbody tr.fixed-column td {
  background: #F2F2F2;
  border-right: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
}

.reservation-system table tbody tr.fixed-column:last-child td {
  border-bottom: none;
}

.reservation-system table tbody tr td {
  border-left: 1px solid #E3E3E3;
  border-right: 1px solid #E3E3E3;
}

.reservation-system table tbody tr td.taken {
  background: #fc2516;
}

.reservation-system table tr.fixed-column {
  position: absolute;
  z-index: 5;
  left: 0;
}

.reservation-system table td {
  text-align: center;
  padding: 12px 16px;
}

.reservation-system table td:first-child {
  border-left: none;
  width: 96px;
}

.reservation-system table td:last-child {
  border-right: none;
}

.reservation-system .reservation-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #F2F2F2;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 984px) {
  .reservation-system .reservation-types {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  .reservation-system .reservation-types button {
    min-width: 160px;
  }

  .reservation-system .reservation-container .fade {
    display: none;
  }

  .reservation-system table .fixed-column {
    display: none;
  }
}

.accordion__heading {
  display: flex;
  align-items: center;
}

.accordion__heading svg {
  width: 24px;
  height: 24px;
  margin-left: auto;
  transition: 0.3s ease-in-out;
  fill: #333333;
}

.accordion__heading svg.is-open {
  transform: rotate(180deg);
  fill: #fc2516;
}

.ui-datepicker {
  z-index: 9 !important;
}

.ui-datepicker-header {
  position: relative;
  background-color: #757575;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  position: absolute;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  background-size: 16px 16px;
  background-position: center center;
  background-repeat: no-repeat;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
  cursor: pointer;
}

.ui-datepicker-prev {
  left: 0;
  border-right: 1px solid #333333;
  background-image: url("/assets/svg/backgrounds/chevron-left.svg");
}

.ui-datepicker-next {
  right: 0;
  border-left: 1px solid #333333;
  background-image: url("/assets/svg/backgrounds/chevron-right.svg");
}

.ui-datepicker-title {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 40px;
}

.ui-datepicker-calendar {
  border-spacing: 0;
  font-size: 16px;
  font-weight: 400;
}

.ui-datepicker-calendar thead {
  background-color: #fc2516;
  color: #FFFFFF;
}

.ui-datepicker-calendar tbody tr:nth-child(even) {
  background-color: #ffe1df;
}

.ui-datepicker-calendar tbody tr:nth-child(odd) {
  background-color: #FFFFFF;
}

.ui-datepicker-calendar tr {
  height: 40px;
}

.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
  width: 40px;
  text-align: center;
  padding: 0;
}

.ui-datepicker-calendar th {
  font-size: 16px;
  font-weight: 400;
}

.ui-datepicker-calendar td {
  cursor: default;
}

.ui-datepicker-calendar td:not(.ui-datepicker-other-month) {
  position: relative;
}

.ui-datepicker-calendar td:not(.ui-datepicker-other-month):hover {
  cursor: pointer;
}

.ui-datepicker-calendar td:not(.ui-datepicker-other-month):hover::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 4px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fc2516;
  border-radius: 16px;
}

.ui-datepicker-calendar td:not(.ui-datepicker-other-month):hover a {
  color: #FFFFFF;
  position: relative;
  z-index: 10;
}

.ui-datepicker-calendar td:not(.ui-datepicker-other-month) a {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}

.gallery-container {
  width: 100%;
}

.gallery-slide {
  width: 100%;
  padding-top: calc(591.44 / 1127.34 * 100%);
  background-size: cover;
}

.gallery-button {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-outside-button {
  cursor: pointer;
}

.gallery-button-prev {
  background-image: url("/assets/svg/arrows/arrow-left.svg");
}

.gallery-button-next {
  background-image: url("/assets/svg/arrows/arrow-right.svg");
  right: 0;
}

.gallery-status {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #707070;
}

.gallery-status .status {
  margin-right: 16px;
  margin-left: 16px;
}

@media screen and (min-width: 640px) {
  .gallery-status .status {
    margin-right: 40px;
    margin-left: 40px;
  }
}

.sidebar-nav a {
  font-size: 16px;
  line-height: 24px;
  color: #707070;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  position: relative;
}

.sidebar-nav a.is-active {
  color: #fc2516;
}

.sidebar-nav ul {
  margin: 24px 0;
  padding-left: 0;
  position: relative;
}

.sidebar-nav ul::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #E6E6E6;
  position: absolute;
  top: 0;
  left: 6px;
}

.sidebar-nav li {
  list-style: none;
}

.sidebar-nav li a {
  padding-left: 24px;
}

.sidebar-nav li a:hover::before,
.sidebar-nav li a.is-active::before {
  background: #fc2516;
}

.sidebar-nav li a::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: -5px;
  top: 0;
  box-sizing: border-box;
  background: #E3E3E3;
  border: 4px solid #FFFFFF;
  border-radius: 100%;
  background-clip: padding-box;
}

aside {
  display: none;
}

@media screen and (min-width: 800px) {
  aside {
    display: block;
  }
}

.custom-form {
  display: grid;
  grid-template-columns: 100%;
  float: left;
  margin-bottom: 32px;
}

.custom-form .form-button {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  display: block;
  width: 100%;
  background-color: #fc2516;
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 8px;
}

.custom-form .form-button:hover {
  color: #FFFFFF;
  background-color: #dc1103;
}

@media screen and (min-width: 672px) {
  .custom-form {
    grid-template-columns: calc(50% - 16px) calc(50% - 16px);
    grid-column-gap: 32px;
  }

  .custom-form .form-field {
    grid-column-start: 1;
  }
}

.input-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: block;
  padding-left: 2px;
  padding-bottom: 8px;
}

.agree p {
  margin-bottom: 16px;
}

.add-more {
  margin-bottom: 32px;
}

.add-more-append-to {
  grid-column-start: 1;
}

input {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  display: block;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  color: #333333;
  padding: 10px 16px;
  margin-bottom: 24px;
  transition: border 100ms ease-out;
}

input:focus {
  box-shadow: inset 0 0 3px 1px rgba(118, 194, 78, 0.85);
}

.heading {
  margin-top: 32px;
  margin-bottom: 16px;
}

.custom-select {
  position: relative;
}

.custom-select .select-selected {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  display: block;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  color: #333333;
  margin-bottom: 24px;
  transition: border 100ms ease-out;
  padding: 12px 16px;
}

.custom-select .select-selected::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 12px;
  background-image: url("/assets/svg/backgrounds/chevron-down-green.svg");
  background-size: 12px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #E3E3E3;
  border-radius: 100%;
  transition: 0.3s ease-in-out;
}

.custom-select .select-selected.is-open {
  border-radius: 4px 4px 0 0;
  box-shadow: inset 0 0 3px 1px rgba(118, 194, 78, 0.85);
}

.custom-select .select-selected.is-open::after {
  transform: rotate(-180deg);
}

.custom-select .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

.custom-select .select-item,
.custom-select .select-selected {
  min-height: 48px;
  cursor: pointer;
  box-sizing: border-box;
}

.custom-select .select-items {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  background: #FFFFFF;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: transparent #E3E3E3 #E3E3E3;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.custom-select .select-item {
  position: relative;
  border-bottom: 1px solid #E3E3E3;
  padding: 24px 16px;
}

.custom-select .select-item:hover {
  cursor: pointer;
}

.custom-select .select-item a {
  font-size: 12px;
  position: absolute;
  right: 8px;
  bottom: 4px;
}

.custom-select .is-hidden {
  display: none;
}

.custom-select .select-items li:hover,
.custom-select .is-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.radio {
  margin-bottom: 24px;
}

.radio .content label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: block;
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio .content label:hover .checkmark {
  background: #E3E3E3;
}

.radio .content input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio .content input:checked ~ .checkmark:after {
  display: block;
  background-color: transparent;
  background-image: url("/assets/svg/backgrounds/list-check.svg");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.radio .content .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #E3E3E3;
}

.radio .content .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
}

.checkbox {
  margin-bottom: 24px;
}

.checkbox .content label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: block;
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox .content label:hover .checkmark {
  background: #E3E3E3;
}

.checkbox .content input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox .content input:checked ~ .checkmark:after {
  display: block;
  background-color: transparent;
  background-image: url("/assets/svg/backgrounds/list-check.svg");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.checkbox .content .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #E3E3E3;
}

.checkbox .content .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
}

.textarea {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  display: block;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  color: #333333;
  padding: 10px 16px;
  margin-bottom: 24px;
  transition: border 100ms ease-out;
  resize: none;
}

.textarea:focus {
  box-shadow: inset 0 0 3px 1px rgba(118, 194, 78, 0.85);
}

