body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Nunito";
  background-color: #B7B7B7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1035' height='1035' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='88' y1='88' x2='0' y2='0'%3E%3Cstop offset='0' stop-color='%2300569e'/%3E%3Cstop offset='1' stop-color='%230087d5'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='75' y1='76' x2='168' y2='160'%3E%3Cstop offset='0' stop-color='%23565656'/%3E%3Cstop offset='0.09' stop-color='%236d6d6d'/%3E%3Cstop offset='0.18' stop-color='%237b7b7b'/%3E%3Cstop offset='0.31' stop-color='%23878787'/%3E%3Cstop offset='0.44' stop-color='%23909090'/%3E%3Cstop offset='0.59' stop-color='%23969696'/%3E%3Cstop offset='0.75' stop-color='%239c9c9c'/%3E%3Cstop offset='1' stop-color='%239F9F9F'/%3E%3C/linearGradient%3E%3Cfilter id='c' x='0' y='0' width='200%25' height='200%25'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='12' /%3E%3C/filter%3E%3C/defs%3E%3Cpolygon fill='url(%23a)' points='0 174 0 0 174 0'/%3E%3Cpath fill='%23000' fill-opacity='0.43' filter='url(%23c)' d='M121.8 174C59.2 153.1 0 174 0 174s63.5-73.8 87-94c24.4-20.9 87-80 87-80S107.9 104.4 121.8 174z'/%3E%3Cpath fill='url(%23b)' d='M142.7 142.7C59.2 142.7 0 174 0 174s42-66.3 74.9-99.3S174 0 174 0S142.7 62.6 142.7 142.7z'/%3E%3C/svg%3E");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top left;
  cursor: default;
  transition: 1s;
}
.container {
  display: grid;
  grid-template-areas: 'nav nav' 'user events' 'reservations events';
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 70px;
  padding: 20px;
}
.container .topnav {
  grid-area: nav;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.77);
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
.container .topnav .active:after {
  content: '';
  position: absolute;
  background-color: #e8a20c;
  height: 3px;
  width: 100%;
  left: 0;
  bottom: 7px;
}
.container .topnav a {
  float: left;
  display: block;
  color: #202020;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 17px;
  position: relative;
  margin: 1px 5px 1px 5px;
}
.container .topnav a:first-child {
  margin-left: 17px;
}
.container .topnav a:after {
  content: "";
  position: absolute;
  background-color: #e8a20c;
  /* background-color: #0c98E8; */
  height: 3px;
  width: 0;
  left: 0;
  bottom: 7px;
  transition: 0.4s ease-out;
}
.container .topnav a:hover {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}
.container .topnav a:hover:after {
  width: 100%;
}
.container .topnav .logout {
  margin-left: 0;
  margin-right: 17px;
  float: right;
}
.container .topnav .icon {
  display: none;
  cursor: pointer;
}
.container .user_panel {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: user;
  width: 55%;
}
.container .user_panel:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .container .user_panel:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
.container .user_panel td {
  font-size: 17px;
  margin: 10px 0 10px 0;
  padding-left: 25px;
  text-align: left;
}
.container .user_panel td#high {
  color: #bd3f3f;
}
.container .user_panel h4 {
  margin: 0;
  text-align: center;
  padding-bottom: 2px;
}
.container .user_panel h6 {
  overflow: hidden;
  text-align: center;
  margin: 12px 0 8px 0;
  color: #202020;
}
.container .user_panel h6:before,
.container .user_panel h6:after {
  background-color: #202020;
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
  width: 20%;
}
.container .user_panel h6:before {
  right: 0.5em;
  margin-left: -50%;
}
.container .user_panel h6:after {
  left: 0.5em;
  margin-right: -50%;
}
.container .user_panel .buttons {
  display: grid;
  grid-template-areas: 'label1 label2' 'btn1 btn2';
  gap: 0 10px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: center;
  justify-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}
.container .user_panel .buttons #tray {
  grid-area: btn1;
}
.container .user_panel .buttons #tray_label {
  grid-area: label1;
  font-size: 14px;
}
.container .user_panel .buttons #lights {
  grid-area: btn2;
}
.container .user_panel .buttons #lights_label {
  grid-area: label2;
  font-size: 14px;
}
.container .user_panel .buttons .btn {
  width: 60%;
  cursor: pointer;
  background-color: #e8a20c;
  border: none;
  border-radius: 16px;
  color: #202020;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Nunito";
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
.container .user_panel .buttons .btn:hover {
  box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.3), 0 3px 10px 0 rgba(0, 0, 0, 0.29);
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 30px white;
}
.container .user_panel .buttons .btn.disabled {
  background-color: #8d8d8d;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
.container .user_panel .buttons .btn.disabled:hover {
  transition: none;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  .container .user_panel .buttons .btn {
    width: 75%;
  }
}
.container .reservation_panel {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: reservations;
  width: 55%;
  align-self: end;
}
.container .reservation_panel:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .container .reservation_panel:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
.container .reservation_panel h4 {
  margin: 0;
  margin-bottom: 5px;
}
.container .reservation_panel h6 {
  overflow: hidden;
  text-align: center;
  margin: 4px 0 8px 0;
  color: #202020;
}
.container .reservation_panel h6:before,
.container .reservation_panel h6:after {
  background-color: #202020;
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
  width: 20%;
}
.container .reservation_panel h6:before {
  right: 0.5em;
  margin-left: -50%;
}
.container .reservation_panel h6:after {
  left: 0.5em;
  margin-right: -50%;
}
.container .reservation_panel .reservation {
  display: flex;
  justify-content: space-between;
  width: 80%;
  font-size: 18px;
  margin: auto;
}
.container .reservation_panel #longterm {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
}
.container .reservation_panel #longterm .day {
  font-size: 16px;
  text-align: left;
}
.container .reservation_panel #longterm .time {
  font-size: 14px;
  text-align: right;
}
.container .reservation_panel #longterm tr:not(:last-child) {
  border-bottom: 1px solid #646464;
}
.container .reservation_panel .buttons {
  margin-top: 11px;
  margin-bottom: 8px;
}
.container .reservation_panel .btn {
  width: 60%;
  cursor: pointer;
  background-color: #e8a20c;
  border: none;
  border-radius: 16px;
  color: #202020;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Nunito";
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
.container .reservation_panel .btn:hover {
  box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.3), 0 3px 10px 0 rgba(0, 0, 0, 0.29);
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 30px white;
}
.container .reservation_panel .btn.disabled {
  background-color: #8d8d8d;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
.container .reservation_panel .btn.disabled:hover {
  transition: none;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  .container .reservation_panel .btn {
    width: 75%;
  }
}
.container .events_panel {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: events;
  width: 65%;
  padding: 16px 0;
  align-self: center;
}
.container .events_panel:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .container .events_panel:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
.container .events_panel h4 {
  margin: 0;
}
.container .events_panel a {
  text-decoration: none;
  color: #202020;
}
.container .events_panel .event {
  border: 2px solid #bd3f3f;
  border-radius: 25px;
  padding: 5px 25px;
  margin: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 21px;
  box-shadow: 0 3px 3px 0 rgba(189, 63, 63, 0.2), 0 6px 20px 0 rgba(189, 63, 63, 0.19);
  cursor: pointer;
}
.container .events_panel .event .running {
  font-size: 17px;
}
.container .events_panel .event:hover {
  border: 2px solid #9b3434;
  box-shadow: 0 6px 6px 0 rgba(170, 57, 57, 0.2), 0 12px 28px 0 rgba(170, 57, 57, 0.19);
  background-color: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}
.container .events_panel .event.paid {
  border: 2px solid #3e9437;
  box-shadow: 0 3px 3px 0 rgba(49, 121, 43, 0.2), 0 6px 20px 0 rgba(49, 121, 43, 0.19);
}
.container .events_panel .event.paid:hover {
  border: 2px solid #337a2d;
  box-shadow: 0 6px 6px 0 rgba(41, 102, 36, 0.2), 0 12px 28px 0 rgba(41, 102, 36, 0.19);
  background-color: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}
.container .events_panel .buttons {
  margin-top: 11px;
  margin-bottom: 8px;
}
.container .events_panel .btn {
  width: 60%;
  cursor: pointer;
  background-color: #e8a20c;
  border: none;
  border-radius: 16px;
  color: #202020;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Nunito";
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
.container .events_panel .btn:hover {
  box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.3), 0 3px 10px 0 rgba(0, 0, 0, 0.29);
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 30px white;
}
.container .events_panel .btn.disabled {
  background-color: #8d8d8d;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
.container .events_panel .btn.disabled:hover {
  transition: none;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  .container .events_panel .btn {
    width: 75%;
  }
}
#messages {
  position: fixed;
  z-index: 1;
  padding: 45vh 20px 0 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
#messages .modal-content {
  display: grid;
  grid-template-areas: 'text close';
  grid-template-columns: 1fr auto;
  width: fit-content;
  max-width: 40%;
  box-sizing: border-box;
  position: relative;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin: auto;
  padding: 10px 10px 10px 20px;
  margin-bottom: 20px;
  -webkit-animation: animatetop 0.6s;
  animation: animatetop 0.6s;
}
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
#messages .modal-content #close {
  grid-area: close;
  justify-self: end;
  color: #868686;
  font-size: 20px;
  font-weight: bold;
  padding-left: 15px;
  margin-right: 5px;
}
#messages .modal-content #close:hover,
#messages .modal-content #close:focus {
  color: #202020;
  text-decoration: none;
  cursor: pointer;
}
#messages .modal-content #text {
  grid-area: text;
  align-self: end;
  font-size: 19px;
  font-weight: bold;
}
#messages .modal-content#success {
  border: 2px solid #3e9437;
}
#messages .modal-content#warning {
  border: 2px solid #e8a20c;
}
#messages .modal-content#error {
  border: 2px solid #bd3f3f;
}
@media screen and (max-width: 1650px) {
  .container .user_panel {
    width: 65%;
  }
  .container .events_panel {
    width: 75%;
  }
  .container .reservation_panel {
    width: 65%;
  }
}
@media screen and (max-width: 1400px) {
  .container {
    gap: 45px;
  }
  .container .user_panel {
    width: 80%;
  }
  .container .events_panel {
    width: 90%;
  }
  .container .reservation_panel {
    width: 80%;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    gap: 40px;
  }
  .container .user_panel {
    width: 90%;
    justify-self: left;
  }
  .container .events_panel {
    width: 100%;
  }
  .container .reservation_panel {
    width: 90%;
    justify-self: left;
  }
  #messages .modal-content {
    max-width: 64%;
  }
}
@media screen and (max-width: 950px) {
  .container {
    grid-template-areas: 'nav' 'user' 'events' 'reservations';
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 15px;
  }
  .container .user_panel,
  .container .events_panel,
  .container .reservation_panel {
    width: 63%;
    justify-self: center;
  }
}
@media screen and (max-width: 768px) {
  .container .topnav a:not(:first-child),
  .container .dropdown .dropbtn {
    display: none;
  }
  .container .topnav a.icon {
    float: right;
    display: block;
  }
  .container .user_panel,
  .container .events_panel,
  .container .reservation_panel {
    width: 70%;
  }
  #messages .modal-content {
    max-width: 83%;
  }
}
@media screen and (max-width: 768px) {
  .container .topnav.responsive {
    position: relative;
  }
  .container .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .container .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    width: fit-content;
    margin-left: 17px;
  }
  .container .topnav.responsive a:after {
    content: "";
    position: absolute;
    background-color: #e8a20c;
    height: 3px;
    width: 0;
    left: 0;
    bottom: 7px;
    transition: 0.4s ease-out;
  }
  .container .topnav.responsive a:hover:after {
    width: 100%;
  }
  .container .topnav.responsive .active:after {
    content: "";
    position: absolute;
    background-color: #e8a20c;
    height: 3px;
    width: 0;
    left: 0;
    bottom: 7px;
    transition: 0.4s ease-out;
  }
  .container .topnav.responsive .active:hover:after {
    width: 100px;
  }
}
@media screen and (max-width: 550px) {
  .container {
    grid-template-areas: 'nav' 'user' 'events' 'reservations';
    gap: 30px;
    padding: 15px;
  }
  .container .user_panel,
  .container .events_panel,
  .container .reservation_panel {
    width: 100%;
  }
  #messages {
    padding-left: 15px;
    padding-right: 15px;
  }
  #messages .modal-content {
    max-width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .container .user_panel td {
    font-size: 16px;
    padding-left: 10px;
  }
  .container .user_panel h4 {
    font-size: 26px;
  }
  .container .user_panel h6:before,
  .container .user_panel h6:after {
    width: 14%;
  }
  .container .events_panel h4 {
    font-size: 26px;
  }
  .container .events_panel .event {
    padding: 5px 17px;
    margin: 16px 17px;
    font-size: 19px;
  }
  .container .events_panel .event .running {
    font-size: 14px;
  }
  .container .reservation_panel h4 {
    font-size: 26px;
  }
}
@media (hover: none) {
  .container .topnav a:after,
  .container .topnav.responsive a:after {
    width: 0;
    transition: none;
  }
  .container .topnav a:hover,
  .container .topnav.responsive a:hover {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  }
  .container .topnav a:hover:after,
  .container .topnav.responsive a:hover:after {
    width: 100%;
  }
}
#landing {
  grid-template-areas: 'status status' 'form news' 'reservation news';
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  height: 100%;
}
#landing #status_bar {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: status;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  border-radius: 22px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.6);
}
#landing #status_bar:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #landing #status_bar:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#landing #status_bar .status {
  display: flex;
  align-items: center;
}
#landing #status_bar .status .status_icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
}
#landing #status_bar .status .status_icon#red {
  background-color: #a80000;
  box-shadow: 0 0 4px 2px #c70000;
}
#landing #status_bar .status .status_icon#green {
  background-color: green;
  box-shadow: 0 0 4px 2px green;
}
#landing #status_bar .weather {
  display: flex;
  align-items: center;
}
#landing #status_bar .weather img {
  width: 50px;
}
#landing #status_bar:hover {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
}
#landing .form {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: form;
  align-self: center;
  box-sizing: border-box;
  padding: 20px;
  width: 55%;
}
#landing .form:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #landing .form:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#landing .form h5 {
  margin: 0;
  text-align: center;
}
#landing .form img {
  width: 20%;
}
#landing .form #submit {
  width: 60%;
  cursor: pointer;
  background-color: #e8a20c;
  border: none;
  border-radius: 16px;
  color: #202020;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Nunito";
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 7px;
}
#landing .form #submit:hover {
  box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.3), 0 3px 10px 0 rgba(0, 0, 0, 0.29);
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 30px white;
}
#landing .form #submit.disabled {
  background-color: #8d8d8d;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
#landing .form #submit.disabled:hover {
  transition: none;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  #landing .form #submit {
    width: 75%;
  }
}
#landing .form p {
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 2px;
}
#landing .form p#gdpr {
  text-align: left;
}
#landing .form p a {
  color: #0c98E8;
}
#landing .form .input-group {
  position: relative;
  margin: 0 9%;
  margin-bottom: 30px;
}
#landing .form .input-group .input {
  width: 100%;
  padding: 10px 0;
  font-size: 18px;
  color: #3a3a3a;
  border: none;
  border-bottom: 2px solid #3a3a3a;
  outline: none;
  background: transparent;
}
#landing .form .input-group .input::placeholder {
  color: black;
}
#landing .form .input-group .input:focus ~ label,
#landing .form .input-group .input:valid ~ label {
  top: -20px;
  left: 0;
  color: #e8a20c;
  font-size: 18px;
  font-weight: 800;
}
#landing .form .input-group input[type="checkbox"] {
  margin-right: 20px;
  width: auto;
  float: left;
}
#landing .form .input-group .label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 20px;
  color: #3a3a3a;
  pointer-events: none;
  transition: 0.5s;
}
#landing .form .error {
  font-size: 15px;
  color: red;
}
#landing .news {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: news;
  box-sizing: border-box;
  align-self: center;
  width: 70%;
  padding: 20px 0;
}
#landing .news:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #landing .news:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#landing .news h4 {
  margin: 0;
  margin-bottom: 10px;
}
#landing .news h6 {
  margin: 0;
  text-align: center;
}
#landing .news a {
  color: #0c98E8;
}
#landing .news .new {
  width: 80%;
  margin: auto;
}
#landing .news .new .text {
  font-size: 17px;
  text-align: justify;
  margin: 8px 0 30px 0;
}
#landing .news #faq_url {
  font-size: 20px;
  font-weight: bold;
  padding: 0 20px;
  margin: 0;
}
#landing .news #contact {
  font-size: 17px;
  font-weight: bold;
  padding-top: 20px;
  margin: 0;
}
#landing .manual {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: form;
  box-sizing: border-box;
  align-self: center;
  width: 70%;
  padding: 20px;
}
#landing .manual:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #landing .manual:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#landing .manual h4 {
  margin: 0;
  margin-bottom: 5px;
}
#landing .manual h6 {
  margin: 0;
}
#landing .manual ol,
#landing .manual ul {
  font-size: 16px;
  text-align: left;
  padding-left: 25px;
}
#landing .manual ol a,
#landing .manual ul a {
  color: #0c98E8;
}
#landing .manual p {
  font-size: 16px;
  font-weight: bold;
}
#landing .faq {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: news;
  box-sizing: border-box;
  align-self: center;
  width: 70%;
  padding: 20px;
}
#landing .faq:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #landing .faq:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#landing .faq h4 {
  margin: 0;
  margin-bottom: 5px;
}
#landing .faq h6 {
  margin: 0;
}
#landing .faq a {
  color: #0c98E8;
}
#landing .faq .answer {
  font-size: 16px;
  text-align: justify;
  margin: 6px 0 18px 0;
}
#landing .faq .answer#dobby {
  text-align: center;
  margin: 6px 0 6px 0;
}
#landing .faq .answer#dobby #dobby_a {
  width: 60%;
  cursor: pointer;
  background-color: #e8a20c;
  border: none;
  border-radius: 16px;
  color: #202020;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Nunito";
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
  padding: 11px 16px 11px 0;
}
#landing .faq .answer#dobby #dobby_a:hover {
  box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.3), 0 3px 10px 0 rgba(0, 0, 0, 0.29);
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 30px white;
}
#landing .faq .answer#dobby #dobby_a.disabled {
  background-color: #8d8d8d;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
#landing .faq .answer#dobby #dobby_a.disabled:hover {
  transition: none;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  #landing .faq .answer#dobby #dobby_a {
    width: 75%;
  }
}
#landing .faq .answer#dobby #dobby_a::before {
  content: "🧦";
  font-size: 50px;
}
#landing #reservations {
  grid-area: reservation;
  align-self: center;
  justify-self: center;
  padding: 20px 0;
}
#landing #reservations #prices {
  font-size: 18px;
  margin: auto;
  width: 80%;
}
#landing #reservations #prices .desc {
  float: left;
}
#landing #reservations #prices .price {
  float: right;
}
#landing #reservations #prices #ps {
  font-size: 14px;
}
#landing #reservations #prices hr {
  color: #202020;
}
#landing #gdpr_panel {
  grid-area: form;
  grid-row: span 2;
  grid-column: span 2;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  width: 50%;
  margin-top: 50px;
}
#landing #gdpr_panel:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #landing #gdpr_panel:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
@media screen and (max-width: 1650px) {
  #landing {
    height: 100%;
  }
  #landing .form {
    width: 65%;
  }
  #landing .form img {
    width: 25%;
  }
  #landing .manual,
  #landing .faq,
  #landing .news {
    width: 75%;
  }
}
@media screen and (max-width: 1400px) {
  #landing {
    height: 100%;
  }
  #landing .form {
    width: 70%;
  }
  #landing .form img {
    width: 25%;
  }
  #landing .manual,
  #landing .faq,
  #landing .news {
    width: 85%;
  }
  #landing #reservations {
    width: 70%;
  }
}
@media screen and (max-width: 1100px) {
  #landing .form {
    width: 85%;
  }
  #landing .form img {
    width: 30%;
  }
  #landing .manual,
  #landing .faq,
  #landing .news {
    width: 90%;
  }
  #landing #reservations {
    width: 85%;
  }
}
@media screen and (max-width: 900px) {
  #landing {
    grid-template-areas: 'status' 'form' 'reservation' 'news';
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  #landing .form {
    width: 55%;
  }
  #landing .manual,
  #landing .faq,
  #landing .news {
    width: 55%;
  }
  #landing #reservations {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #landing .form {
    width: 70%;
  }
  #landing .manual,
  #landing .faq,
  #landing .news {
    width: 70%;
  }
  #landing #reservations {
    width: 70%;
  }
}
@media screen and (max-width: 550px) {
  #landing .form {
    width: 100%;
  }
  #landing .form .input-group input[type="checkbox"] {
    margin-right: 7px;
  }
  #landing .manual,
  #landing .faq,
  #landing .news {
    width: 100%;
  }
  #landing #reservations {
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  #landing #reservations #longterm {
    width: 87%;
  }
  #landing #reservations #longterm .day {
    font-size: 15px;
  }
  #landing #reservations #prices {
    width: 87%;
    font-size: 17px;
  }
  #landing #reservations #prices #ps {
    font-size: 13px;
  }
}
#single {
  grid-template-areas: 'nav' 'everything';
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: calc(100vh - 40px);
  grid-gap: 50px;
  padding: 20px;
}
#single .form {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: everything;
  align-self: center;
  box-sizing: border-box;
  padding: 20px;
  width: 30%;
}
#single .form:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #single .form:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#single .form h5 {
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
}
#single .form #submit {
  width: 60%;
  cursor: pointer;
  background-color: #e8a20c;
  border: none;
  border-radius: 16px;
  color: #202020;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Nunito";
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
#single .form #submit:hover {
  box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.3), 0 3px 10px 0 rgba(0, 0, 0, 0.29);
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 30px white;
}
#single .form #submit.disabled {
  background-color: #8d8d8d;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
#single .form #submit.disabled:hover {
  transition: none;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  #single .form #submit {
    width: 75%;
  }
}
#single .form .input-group {
  position: relative;
  margin: 0 10%;
  margin-bottom: 30px;
}
#single .form .input-group .input {
  width: 100%;
  padding: 10px 0;
  font-size: 18px;
  color: #3a3a3a;
  border: none;
  border-bottom: 2px solid #3a3a3a;
  outline: none;
  background: transparent;
}
#single .form .input-group .input::placeholder {
  color: black;
}
#single .form .input-group .input:focus ~ label,
#single .form .input-group .input:valid ~ label {
  top: -20px;
  left: 0;
  color: #e8a20c;
  font-size: 18px;
  font-weight: 800;
}
#single .form .input-group .label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 20px;
  color: #3a3a3a;
  pointer-events: none;
  transition: 0.5s;
}
#single .form #id_message {
  resize: none;
}
#single .form .error {
  font-size: 15px;
  color: #bd3f3f;
}
#single .events {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: everything;
  width: 30%;
  padding: 16px 0;
  box-sizing: border-box;
  align-self: center;
}
#single .events:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #single .events:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#single .events h4 {
  margin: 0;
}
#single .events a {
  text-decoration: none;
  color: #202020;
}
#single .events .event {
  border: 2px solid #bd3f3f;
  border-radius: 25px;
  padding: 5px 25px;
  margin: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 21px;
  box-shadow: 0 3px 3px 0 rgba(189, 63, 63, 0.2), 0 6px 20px 0 rgba(189, 63, 63, 0.19);
  cursor: pointer;
}
#single .events .event .running {
  font-size: 17px;
}
#single .events .event:hover {
  border: 2px solid #9b3434;
  box-shadow: 0 6px 6px 0 rgba(170, 57, 57, 0.2), 0 12px 28px 0 rgba(170, 57, 57, 0.19);
  background-color: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}
#single .events .event.paid {
  border: 2px solid #3e9437;
  box-shadow: 0 3px 3px 0 rgba(49, 121, 43, 0.2), 0 6px 20px 0 rgba(49, 121, 43, 0.19);
}
#single .events .event.paid:hover {
  border: 2px solid #337a2d;
  box-shadow: 0 6px 6px 0 rgba(41, 102, 36, 0.2), 0 12px 28px 0 rgba(41, 102, 36, 0.19);
  background-color: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}
#single .events .buttons {
  margin-top: 20px;
  margin-bottom: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#single .events .btn {
  width: 60%;
  cursor: pointer;
  background-color: #e8a20c;
  border: none;
  border-radius: 16px;
  color: #202020;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Nunito";
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
  margin: 0 20px;
  width: 1.3rem;
}
#single .events .btn:hover {
  box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.3), 0 3px 10px 0 rgba(0, 0, 0, 0.29);
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 30px white;
}
#single .events .btn.disabled {
  background-color: #8d8d8d;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
#single .events .btn.disabled:hover {
  transition: none;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  #single .events .btn {
    width: 75%;
  }
}
#single .modal {
  position: fixed;
  z-index: 1;
  padding-top: 200px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
#single .modal .modal-content {
  position: relative;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 580px;
  margin: auto;
  -webkit-animation: animatetop 0.6s;
  animation: animatetop 0.6s;
}
#single .modal .modal-content.small {
  width: 500px;
}
#single .modal .modal-content.small .modal-body {
  display: grid;
  grid-template-areas: 'info';
  grid-template-columns: 1fr;
  padding: 0 4% 10px 4%;
}
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
#single .modal .modal-content hr {
  width: 95%;
  margin: 4px auto;
}
#single .modal .modal-content .modal-header {
  text-align: left;
  padding-left: 3%;
}
#single .modal .modal-content .modal-header #close {
  color: #868686;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 4px 5px;
  margin-right: 8px;
}
#single .modal .modal-content .modal-header #close:hover,
#single .modal .modal-content .modal-header #close:focus {
  color: #202020;
  text-decoration: none;
  cursor: pointer;
}
#single .modal .modal-content .modal-header h4 {
  margin: 0;
  padding: 10px 0;
  font-size: 20px;
}
#single .modal .modal-content .modal-body {
  display: grid;
  grid-template-areas: 'info qr';
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  padding: 0 3%;
}
#single .modal .modal-content .modal-body #info {
  grid-area: info;
  font-size: 18px;
  padding-top: 5px;
  line-height: 2;
}
#single .modal .modal-content .modal-body #qr {
  grid-area: qr;
  justify-self: end;
}
#single .modal .modal-content .modal-body #qr img {
  width: 240px;
  height: auto;
}
#single .modal .modal-content .modal-body #qr p {
  margin-top: 13px;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 14px;
  font-weight: bold;
}
#single .modal .modal-content .modal-body .popis {
  float: left;
  font-weight: bold;
}
#single .modal .modal-content .modal-body .data {
  float: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65%;
}
#single .modal .modal-content .modal-body .data#checkmark {
  display: inline-block;
  width: 23px;
  height: 23px;
  background-color: #3e9437;
  position: relative;
  border-radius: 5px;
  margin-top: 6px;
}
#single .modal .modal-content .modal-body .data#checkmark::before {
  content: '\2713';
  color: white;
  font-size: 18px;
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
}
#single .modal .modal-content .modal-body .data#cross {
  display: inline-block;
  width: 23px;
  height: 23px;
  background-color: #bd3f3f;
  position: relative;
  border-radius: 5px;
  margin-top: 6px;
}
#single .modal .modal-content .modal-body .data#cross::before {
  content: '\2715';
  color: white;
  font-size: 18px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#single #reservations {
  grid-area: everything;
  align-self: center;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  width: 30%;
  padding: 20px 20px 30px 20px;
}
#single #reservations:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #single #reservations:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#single #reservations h4 {
  margin: 0;
}
#single #reservations h6 {
  overflow: hidden;
  text-align: center;
  margin: 4px 0 8px 0;
  color: #202020;
}
#single #reservations h6:before,
#single #reservations h6:after {
  background-color: #202020;
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
  width: 21%;
}
#single #reservations h6:before {
  right: 0.5em;
  margin-left: -50%;
}
#single #reservations h6:after {
  left: 0.5em;
  margin-right: -50%;
}
#single #reservations .btn {
  width: 60%;
  cursor: pointer;
  background-color: #e8a20c;
  border: none;
  border-radius: 16px;
  color: #202020;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Nunito";
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 10px;
}
#single #reservations .btn:hover {
  box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.3), 0 3px 10px 0 rgba(0, 0, 0, 0.29);
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 30px white;
}
#single #reservations .btn.disabled {
  background-color: #8d8d8d;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
#single #reservations .btn.disabled:hover {
  transition: none;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  #single #reservations .btn {
    width: 75%;
  }
}
#single #reservations .reservation {
  display: grid;
  grid-template-areas: 'info btns';
  grid-template-columns: 1fr auto;
  grid-gap: 40px;
  box-sizing: border-box;
  width: 100%;
  margin: 25px 0;
  font-size: 20px;
  padding: 0 10px;
}
#single #reservations .reservation .info {
  grid-area: info;
  text-align: left;
}
#single #reservations .reservation .info hr {
  margin: 2px 0;
  border: 1px solid #969696;
  border-radius: 5px;
}
#single #reservations .reservation .btns {
  grid-area: btns;
}
#single #reservations .reservation .btns a {
  text-decoration: none;
  padding: 0px 10px;
}
@media screen and (max-width: 1400px) {
  #single .form {
    width: 40%;
  }
  #single .events {
    width: 40%;
  }
  #single #reservations {
    width: 40%;
  }
}
@media screen and (max-width: 1100px) {
  #single .form {
    width: 45%;
  }
  #single .events {
    width: 45%;
  }
  #single #reservations {
    width: 45%;
  }
}
@media screen and (max-width: 900px) {
  #single .form {
    width: 60%;
  }
  #single .events {
    width: 60%;
  }
  #single #reservations {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #single {
    height: 100%;
    padding: 15px;
  }
  #single .form {
    width: 70%;
  }
  #single .events {
    width: 70%;
  }
  #single .modal {
    padding: 150px 20px;
    box-sizing: border-box;
  }
  #single .modal .modal-content {
    box-sizing: border-box;
    width: 65%;
  }
  #single .modal .modal-content.small {
    width: 70%;
  }
  #single .modal .modal-content hr {
    width: 91%;
  }
  #single .modal .modal-content .modal-header h4 {
    padding: 10px 6px;
  }
  #single .modal .modal-content .modal-body {
    grid-template-areas: 'info' 'qr';
    grid-template-columns: 1fr;
    padding: 0 4%;
  }
  #single .modal .modal-content .modal-body #qr {
    justify-self: center;
  }
  #single .modal .modal-content .modal-body #qr img {
    width: 240px;
    height: auto;
  }
  #single #reservations {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  #single .events .btn {
    width: 1.3rem;
  }
}
@media screen and (max-width: 550px) {
  #single .form {
    width: 100%;
  }
  #single .events {
    width: 100%;
  }
  #single .modal {
    padding: 75px 15px;
    box-sizing: border-box;
  }
  #single .modal .modal-content,
  #single .modal .modal-content.small {
    box-sizing: border-box;
    width: 100%;
  }
  #single #reservations {
    width: 100%;
    box-sizing: border-box;
  }
  #single #reservations .reservation {
    grid-gap: 10px;
    padding: 0 2px;
  }
}
@media screen and (max-width: 375px) {
  #single .form {
    width: 100%;
  }
  #single .events h4 {
    font-size: 26px;
  }
  #single .events .event {
    padding: 5px 17px;
    margin: 16px 17px;
    font-size: 19px;
  }
  #single .events .event .running {
    font-size: 14px;
  }
  #single .events .buttons {
    font-size: 24px;
  }
  #single #reservations {
    padding: 20px 6px 30px 12px;
  }
  #single #reservations h4 {
    font-size: 26px;
  }
  #single #reservations h6:before,
  #single #reservations h6:after {
    width: 15%;
  }
  #single #reservations .reservation {
    margin: 15px 0;
    font-size: 18px;
  }
  #single #reservations .reservation .btns a {
    padding: 0 7px;
  }
  #single #reservations .reservation .btns svg {
    width: 24px;
    height: 24px;
  }
}
#double {
  grid-template-areas: 'nav nav' 'left right';
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  min-height: calc(100vh - 40px);
}
#double .form {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: left;
  align-self: center;
  box-sizing: border-box;
  padding: 20px;
  width: 60%;
}
#double .form:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #double .form:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#double .form h5 {
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}
#double .form #submit {
  width: 60%;
  cursor: pointer;
  background-color: #e8a20c;
  border: none;
  border-radius: 16px;
  color: #202020;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Nunito";
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
#double .form #submit:hover {
  box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.3), 0 3px 10px 0 rgba(0, 0, 0, 0.29);
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 30px white;
}
#double .form #submit.disabled {
  background-color: #8d8d8d;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
#double .form #submit.disabled:hover {
  transition: none;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  #double .form #submit {
    width: 75%;
  }
}
#double .form p {
  font-size: 15px;
  margin-top: 0;
}
#double .form p a {
  color: #0c98E8;
}
#double .form .input-group {
  position: relative;
  margin: 0 10%;
  margin-bottom: 30px;
}
#double .form .input-group.small {
  margin-bottom: 10px;
}
#double .form .input-group .input {
  width: 100%;
  padding: 10px 0;
  font-size: 18px;
  color: #3a3a3a;
  border: none;
  border-bottom: 2px solid #3a3a3a;
  outline: none;
  background: transparent;
  cursor: pointer;
}
#double .form .input-group .input::placeholder {
  color: black;
}
#double .form .input-group .input:focus ~ label,
#double .form .input-group .input:valid ~ label,
#double .form .input-group .input.no_style ~ label {
  top: -20px;
  left: 0;
  color: #e8a20c;
  font-size: 18px;
  font-weight: 800;
}
#double .form .input-group .label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 20px;
  color: #3a3a3a;
  pointer-events: none;
  transition: 0.5s;
}
#double .form #id_desc {
  resize: none;
  height: 100px;
  cursor: initial;
}
#double .form .input-group input[type="checkbox"] {
  width: auto;
  margin-right: 100%;
}
#double .form #date_end {
  display: none;
}
#double .form .error {
  font-size: 15px;
  color: red;
}
#double .manual {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: right;
  box-sizing: border-box;
  align-self: center;
  width: 70%;
  padding: 20px;
}
#double .manual:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #double .manual:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#double .manual h4 {
  margin: 0;
  margin-bottom: 5px;
}
#double .manual h6 {
  margin: 0;
}
#double .manual ol,
#double .manual ul {
  font-size: 16px;
  text-align: left;
  padding-left: 25px;
}
#double .manual ol a,
#double .manual ul a {
  color: #0c98E8;
}
#double .manual p {
  font-size: 16px;
  font-weight: bold;
}
#double .videos {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  font-size: 30px;
  border-radius: 30px;
  justify-self: center;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
  grid-area: left;
  align-self: center;
  box-sizing: border-box;
  padding: 20px;
  width: 60%;
}
#double .videos:hover {
  background-color: rgba(255, 255, 255, 0.77);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  #double .videos:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.77);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.6);
  }
}
#double .videos h6 {
  margin: 10px;
}
#double .videos .video iframe {
  border-radius: 15px;
}
#double #reservations {
  grid-area: right;
  align-self: center;
}
#double #reservations #prices {
  font-size: 18px;
  margin: auto;
  width: 80%;
}
#double #reservations #prices .desc {
  float: left;
}
#double #reservations #prices .price {
  float: right;
}
#double #reservations #prices #ps {
  font-size: 14px;
}
#double #reservations #prices hr {
  color: #202020;
}
@media screen and (max-width: 1400px) {
  #double .form {
    width: 75%;
  }
  #double .form img {
    width: 25%;
  }
  #double .manual {
    width: 85%;
  }
  #double .videos {
    width: 85%;
  }
  #double #reservations {
    width: 75%;
  }
}
@media screen and (max-width: 1100px) {
  #double .form {
    width: 90%;
  }
  #double .form img {
    width: 30%;
  }
  #double .manual {
    width: 90%;
  }
  #double .videos {
    width: 90%;
  }
  #double #reservations {
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  #double {
    grid-template-areas: 'nav' 'left' 'right';
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: 100%;
  }
  #double .form {
    width: 60%;
  }
  #double .manual {
    width: 60%;
  }
  #double .videos {
    width: 60%;
  }
  #double #reservations {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #double .form {
    width: 70%;
  }
  #double .manual {
    width: 70%;
  }
  #double .videos {
    width: 70%;
  }
  #double #reservations {
    width: 70%;
  }
}
@media screen and (max-width: 550px) {
  #double .form {
    width: 100%;
  }
  #double .manual {
    width: 100%;
  }
  #double .videos {
    width: 100%;
  }
  #double .videos h6 {
    font-size: 15px;
  }
  #double .videos .video iframe {
    width: 80%;
  }
  #double #reservations {
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  #double #reservations #longterm {
    width: 87%;
  }
  #double #reservations #longterm .day {
    font-size: 15px;
  }
  #double #reservations #prices {
    width: 87%;
    font-size: 17px;
  }
  #double #reservations #prices #ps {
    font-size: 13px;
  }
  #double .videos .video iframe {
    width: 90%;
  }
}
