@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.calendar .book-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 28px;
  background-color: #2985d8;
  border: solid 2px #2985d8;
  color: #ffffff;
}

.calendar .book-button:hover {
  background: #206bae;
  border: solid 2px #206bae;
}

.calendar .book-button:active {
  background: transparent;
  border: solid 2px #404040;
}

@font-face {
  font-family: ionicons;
  src: url("/fonts/ionicons.ttf");
}

@font-face {
  font-family: lineicons;
  src: url("/fonts/simple-line-icons.woff2");
}

@font-face {
  font-family: icofont;
  src: url("/fonts/icofont.ttf");
}

::-moz-selection {
  background-color: rgba(41, 133, 216, 0.5);
}

::selection {
  background-color: rgba(41, 133, 216, 0.5);
}

::moz-selection {
  background-color: rgba(41, 133, 216, 0.5);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/**
* Make the field a flex-container, reverse the order so label is on top.
*/

.floating-label {
  display: flex;
  flex-flow: column-reverse;
  margin-bottom: 1em;
  /**
  * Add a transition to the label and input.
  * I'm not even sure that touch-action: manipulation works on
  * inputs, but hey, it's new and cool and could remove the
  * pesky delay.
  */
  /**
  * Translate down and scale the label up to cover the placeholder,
  * when following an input (with placeholder-shown support).
  * Also make sure the label is only on one row, at max 2/3rds of the
  * field—to make sure it scales properly and doesn't wrap.
  */
  /**
  * By default, the placeholder should be transparent. Also, it should
  * inherit the transition.
  */
  /**
  * Show the placeholder when the input is focused.
  */
  /**
  * When the element is focused, remove the label transform.
  * Also, do this when the placeholder is _not_ shown, i.e. when
  * there's something in the input at all.
  */
}

.floating-label label,
.floating-label input {
  transition: all 0.2s;
  touch-action: manipulation;
}

.floating-label input {
  font-size: 1.5em;
  border: 0;
  border-bottom: 1px solid #ccc;
  font-family: inherit;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0;
  cursor: text;
  background: none;
  color: #000;
}

.floating-label input:focus {
  outline: 0;
  border-bottom: 1px solid #666;
}

.floating-label label {
  letter-spacing: 0.05em;
  pointer-events: none;
}

.floating-label input:placeholder-shown + label {
  cursor: text;
  max-width: 66.66%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(0, 1.5rem) scale(1.5);
  color: #999;
}

.floating-label ::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: inherit;
  transition: inherit;
}

.floating-label input:focus::-webkit-input-placeholder {
  opacity: 1;
}

.floating-label input:not(:placeholder-shown) + label,
.floating-label input:focus + label {
  transform: translate(0, 0) scale(1);
  cursor: pointer;
  color: #000;
}

/* Customize the label (the container) */

.styled-radios-label {
  font-size: 1.5em;
}

.styled-radios {
  margin-left: -15px;
  padding-top: 1em;
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
}

.styled-radios .label {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 1em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #999;
}

.styled-radios .label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.styled-radios .checkmark {
  height: 5px;
  width: 5px;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  order: -1;
  margin-right: 10px;
}

.styled-radios .label:hover input ~ .checkmark {
  background: #000;
}

.styled-radios .label input:checked ~ .checkmark {
  background-color: #2985d8;
}

.styled-radios .label input:checked ~ .text {
  color: #2985d8;
}

.message {
  padding-top: 60px;
  text-align: center;
}

.calendar-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-top: 80px;
}

.calendar-container {
  text-align: center;
}

.calendar-container .fully-booked {
  display: block;
  padding-top: 100px;
  font-size: 1.2em;
}

.calendar {
  display: inline-block;
  margin: 60px auto;
  padding-bottom: 200px;
}

.calendar .week,
.calendar .head {
  display: flex;
}

.calendar .day {
  width: 108px;
  height: 106px;
  border: solid 1px #272727;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  position: relative;
}

.calendar .day.empty {
  opacity: 0.15;
  pointer-events: none;
}

.calendar .day .day-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar .day .day-link.active {
  background: #2985d8;
  color: #ffffff;
}

.calendar .day.today .day-link {
  border: solid 2px #2985d8;
}

.calendar .day.last {
  color: #2985d8;
}

.calendar .day.last:after {
  content: "1 \394\399\391\398\395\3A3\399\39C\39F";
  width: 100%;
  display: block;
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  font-size: 9px;
  font-weight: bold;
  color: #0000;
  padding: 3px;
}

.calendar .head .day {
  opacity: 0.5;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.calendar .details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.2s ease;
}

.calendar .details.open {
  max-height: 1224px;
  opacity: 1;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.calendar .details-wrapper {
  border: solid 1px #373737;
  background-color: #dae4f2;
  padding: 30px;
}

.calendar .details-inner {
  border-radius: 5px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  padding: 35px 35px 17px;
  margin-bottom: 20px;
}

.calendar .details-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #242424;
  margin-bottom: 20px;
}

.calendar .reservation-list {
  max-height: 1032px;
  overflow-y: auto;
}

.calendar .reservation {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: bold;
  color: #3c3c3c;
  border-top: 1px solid #e0e0e0;
}

.calendar .reservation .time,
.calendar .reservation .count {
  display: block;
  text-align: left;
  padding: 3px 0;
}

.calendar .reservation .time {
  font-size: 12px;
  font-weight: bold;
  color: #3c3c3c;
}

.calendar .reservation .time:before {
  font-family: icofont;
  content: "\EEDC";
  font-size: 14px;
  color: #3c3c3c;
  margin-right: 7px;
}

.calendar .reservation .count {
  font-size: 10px;
  letter-spacing: 1.7px;
  color: #9f9f9f;
}

.calendar .book-button {
  width: 140px;
}

.booking-form {
  width: 500px;
  margin: 30px auto;
}

.booking-form .highlight {
  color: #2985d8;
}

.booking-form .cta-button {
  font-size: 24px;
}

.booking-title {
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  margin-top: 51px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.booking-title .highlight {
  color: #2985d8;
}

.highlight {
  color: #2985d8;
}

.change-link-container {
  text-align: center;
  margin-bottom: 51px;
  margin-top: 20px;
}

.change-link-container .change-link:hover {
  color: #2985d8;
}

.change-link-container .change-link:active {
  color: #206bae;
}

.required-message {
  font-size: 0.8em;
  margin: 20px 0;
}

.payment-instructions {
  line-height: 1.4;
  margin: 20px 0 40px;
}

.submit-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-message {
  text-align: center;
  margin: 30px auto;
}

.thankyou-back-to-front {
  margin: 30px auto;
}

html {
  scroll-behavior: smooth;
}

