@font-face {
  font-family: opens;
  src: url("OpenSans-VariableFont_wdth,wght.ttf"); }
* {
  font-family: opens;
  font-size: 13px;
  font-weight: 300;
  color: #656D2B; }

body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
  gap: 2vh; }

.fewos {
  display: flex;
  justify-content: center;
  gap: 16px; }
  .fewos a {
    display: flex;
    flex-direction: column;
    background: rgba(157, 172, 48, 0.1);
    border-radius: 8px;
    transition: background .2s ease-in;
    padding: 16px;
    text-decoration: none;
    gap: 8px; }
    .fewos a p {
      font-weight: 700;
      margin: 0;
      color: #9DAC30; }
    .fewos a img {
      max-width: 220px; }
    .fewos a:hover {
      background: rgba(157, 172, 48, 0.2); }

#contform {
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer; }

.pricelist {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .pricelist > p {
    font-weight: 700; }
  .pricelist div {
    display: grid;
    grid-gap: 4px;
    grid-template-columns: 134px 74px 74px 74px 74px 74px 108px 78px;
    border: 2px solid rgba(157, 172, 48, 0.1);
    width: 718px;
    border-radius: 8px;
    overflow: hidden; }
    .pricelist div .plhold {
      grid-column-start: 1;
      grid-column-end: 2;
      display: grid; }
    .pricelist div .header {
      grid-column-start: 2;
      grid-column-end: 9;
      display: grid; }
    .pricelist div p {
      text-align: left;
      padding: 8px;
      margin: 0; }
    .pricelist div .plhold, .pricelist div .tbhead, .pricelist div .header {
      background: rgba(157, 172, 48, 0.1);
      border-radius: 2px;
      font-weight: 600; }
  .pricelist .subnote {
    font-size: 9px; }
  .pricelist.mobile {
    display: none; }

.bookingform {
  position: fixed;
  background: rgba(101, 109, 43, 0.2);
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  align-content: center;
  justify-items: center;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center; }
  .bookingform.visible {
    display: block;
    opacity: 1; }
  .bookingform form {
    background: white;
    padding: 44px 82px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 0 16px rgba(101, 109, 43, 0.1);
    border-radius: 8px;
    width: 440px;
    margin: auto; }
    .bookingform form p.subnote {
      margin: 0; }
    .bookingform form h1 {
      margin: 0;
      font-weight: 700;
      font-size: 20px;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .bookingform form h1 svg {
        cursor: pointer; }
    .bookingform form div {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-start;
      width: 100%; }
      .bookingform form div input, .bookingform form div select, .bookingform form div textarea {
        width: 100%;
        border-radius: 8px;
        border: 1.5px solid #9DAC30;
        background: rgba(157, 172, 48, 0.05);
        transition: background .2s ease-in;
        box-sizing: border-box;
        padding: 8px; }
        .bookingform form div input:hover, .bookingform form div input:focus, .bookingform form div select:hover, .bookingform form div select:focus, .bookingform form div textarea:hover, .bookingform form div textarea:focus {
          background: rgba(157, 172, 48, 0.15);
          outline: none; }
      .bookingform form div select, .bookingform form div input[type="date"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        padding: 0;
        background: none; }
      .bookingform form div .inputframe {
        padding: 8px;
        border-radius: 8px;
        border: 1.5px solid #9DAC30;
        background: rgba(157, 172, 48, 0.05);
        transition: background .2s ease-in;
        box-sizing: border-box; }
        .bookingform form div .inputframe:hover, .bookingform form div .inputframe:focus {
          background: rgba(157, 172, 48, 0.15);
          outline: none; }
      .bookingform form div.row {
        flex-direction: row;
        gap: 16px; }
      .bookingform form div.checkbox {
        flex-direction: row;
        gap: 8px; }
        .bookingform form div.checkbox input {
          width: auto; }
        .bookingform form div.checkbox lable {
          text-align: left; }
      .bookingform form div label {
        text-align: left; }
    .bookingform form input[type="submit"] {
      background: #9DAC30;
      color: white;
      border: none;
      padding: 8px;
      border-radius: 8px;
      font-weight: 700; }

.again {
  border: 2px solid red !important;
  background-color: #ffe6e6 !important;
  color: red !important; }

.error-highlight {
  color: red; }

.error-message {
  color: red;
  text-align: left; }

#successMessage {
  display: block;
  color: #656D2B;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(101, 109, 43, 0.1); }

#closeagain {
  display: inline-block;
  background: #9DAC30;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 24px;
  cursor: pointer; }

#formErrors {
  color: red;
  margin-top: 1rem; }

@media screen and (max-width: 860px) {
  body > svg:first-child {
    width: 350px; }

  .fewos {
    flex-direction: column; }
    .fewos a img {
      width: 300px;
      max-width: none; }

  .pricelist.mobile {
    display: flex; }

  .pricelist.desktop {
    display: none; }

  .pricelist > div {
    display: flex;
    flex-direction: column;
    border: none;
    width: auto;
    margin-top: 20px; }
    .pricelist > div > p {
      font-weight: 700; }
    .pricelist > div > div {
      display: grid;
      grid-gap: 0;
      grid-template-columns: 50% 50%;
      border: none;
      width: 330px;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 24px; }
      .pricelist > div > div p:first-of-type, .pricelist > div > div p:nth-of-type(2) {
        background: rgba(157, 172, 48, 0.1);
        border-radius: 2px;
        border: none; }
      .pricelist > div > div p {
        border-bottom: 2px solid rgba(157, 172, 48, 0.1);
        font-weight: 400; }
        .pricelist > div > div p.m-top {
          margin-top: 16px; }
        .pricelist > div > div p:nth-of-type(even) {
          text-align: right; }
  .pricelist .subnote {
    width: 300px; }

  body > div:first-of-type {
    width: 300px; }

  .bookingform form {
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: scroll;
    padding: 40px; }
    .bookingform form div.row {
      flex-direction: column; }
    .bookingform form .inputframe input {
      box-sizing: content-box; } }
