@import url("fonts/fonts.css");
a {
  color: inherit;
  text-decoration: none;
}
a.dark {
  color: #695e9c !important;
}
a.light {
  color: rgb(220, 220, 235) !important;
}

a:hover.dark {
  color: rgb(190, 190, 215) !important;
}
a:hover.light {
  color: rgb(190, 190, 215) !important;
}

html {
  font-family: "OpenSansSelfHostet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

html, body {
  overflow-x: hidden;
}

@media (max-width: 786px) {
  html {
    font-size: 9px !important;
  }
}
body {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100vw;
  padding-top: 12vh;
}

header {
  position: fixed;
  height: auto;
  width: 100vw;
  top: 0;
  z-index: 1000;
}
header .header-wrapper {
  position: relative;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 12vh;
  background-image: url("/public/media/logo_navibar_2023_web_3400.jpg");
  background-repeat: repeat no-repeat;
  background-size: cover;
}

#homebutton {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: min(350px, 50vw);
}

footer {
  position: relative;
  display: block;
  height: max-content;
  color: rgb(255, 255, 255);
  background-color: #695e9c;
  margin: auto 0 0 0;
}

#footcon {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3vw;
  padding: 10px 10%;
}

#footcon > div {
  text-align: center;
}

#calendar-container {
  position: fixed;
  bottom: 10vh;
  right: 10vw;
  min-width: 80px;
  min-height: 80px;
  z-index: 100000;
}

#calendar-icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 60px;
  height: 60px;
  padding: 10px;
  margin: 0;
  background-color: #695e9c;
  border: 4px solid rgb(255, 255, 255);
  border-radius: 48px;
  z-index: 10;
}

#calendar-container:hover > #calendar-icon {
  animation: stop 0.2s, icon 0.5s ease-in-out 0.2s;
}

@keyframes stop {
  from {
    top: 87.3%;
    left: 86.2%;
  }
  to {
    top: 87.3%;
    left: 86.2%;
  }
}
@keyframes icon {
  from {
    top: 87.3%;
    left: 86.2%;
  }
  to {
    top: 0;
    left: 0;
  }
}
#calendar-container:hover > #calendar-inner {
  width: 500px;
  max-width: 70vw;
  height: auto;
  margin-left: 30px;
  margin-top: 30px;
  border-radius: 20px;
  border: 4px solid rgb(255, 255, 255);
  padding: 20px 20px 20px 20px;
  transition: transform 0.5s ease-in-out;
  transition-delay: 0.2s;
  transform-origin: bottom right;
  transform: scale(1);
}

#calendar-inner {
  overflow: hidden;
  background-color: rgb(190, 190, 215);
  width: 0px;
  height: 0px;
  margin-left: 30px;
  margin-top: 30px;
  border-radius: 20px;
  padding: 0px 0px;
  transition: transform 0.5s ease-in-out;
  transform-origin: bottom right;
  transform: scale(0);
}

#calendar-container h1 {
  color: rgb(255, 255, 255);
  text-align: right;
  margin: 0 0 1rem 4rem;
  font-size: 2rem;
}

#calendar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-items: flex-start;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 10px 10px;
  gap: 10px 10px;
}
#calendar .day {
  position: relative;
  flex: 0 1 10%;
  background-color: rgb(255, 255, 255);
  padding: 0.3rem;
  min-width: min-content;
  border-radius: 10px;
  text-align: center;
}
#calendar .day .day-inner {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
  font-family: "ComfortaaSelfHostet", "Heebo";
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
#calendar .day .day-inner h3 {
  flex: 1 1 20%;
  margin: 0;
  font-size: 0.7rem;
}
#calendar .day .day-inner h2 {
  flex: 1 1 60%;
  margin: 0;
  font-size: 1.2rem;
}
#calendar .day.available:hover {
  background-color: rgba(0, 0, 0, 0.12);
}
#calendar .day.available::after {
  content: "";
  position: absolute;
  display: block;
  left: 10%;
  bottom: -5px;
  width: 80%;
  height: 0px;
  border-radius: 1.5px;
  border: 1.5px solid rgb(77, 76, 76);
}

#details .details-day {
  display: none;
  flex-direction: column;
}
#details .details-day.active {
  display: flex;
}
#details .details-day .h2 {
  color: black;
  font-size: 3rem;
  margin: 1.3rem 0 1rem 0;
}
#details .details-day .slots select {
  font-size: 2rem;
  font-family: inherit;
  border: 2px solid #695e9c;
  border-radius: 4rem;
  padding: 0.5rem 0.7rem;
  width: 100%;
  text-align: center;
}
#details .details-day .slots .btn-right, #details .details-day .slots .btn-left {
  background-color: #695e9c;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
}
#details .details-day .slots .btn-right svg, #details .details-day .slots .btn-left svg {
  margin: 0.3rem;
  stroke: rgb(255, 255, 255);
  stroke-width: 0.1rem;
}
#details .details-day input[type=submit] {
  background-color: #695e9c;
  border: 0;
  outline: 0;
  margin: 2rem 0 0 auto;
  align-self: flex-end;
  color: rgb(255, 255, 255);
  padding: 0.5rem 0.8rem;
  font-size: 2rem;
  border-radius: 1rem;
}

nav * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  background-color: transparent;
  height: 100%;
  color: rgb(220, 220, 235);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  font-size: 1.2rem;
  padding-right: 60px;
  z-index: 100000;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 10px;
}
nav ul li {
  display: inline;
}
nav ul li a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
}
nav ul li a:hover {
  color: rgb(190, 190, 215);
}
nav ul li.spacer {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.menu-icon {
  display: none;
  font-size: 60px;
  cursor: pointer;
}

@media (max-width: 1400px) {
  nav ul {
    position: fixed;
    top: 30px;
    display: none;
    flex-direction: column;
    width: max-content;
    max-width: 80vw;
    text-align: center;
    background-color: #695e9c;
  }
  nav ul.show {
    display: flex;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    font-size: 3rem;
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
  }
  nav ul li a:hover {
    color: rgb(190, 190, 215);
  }
  nav ul li.spacer {
    display: none;
  }
  nav .menu-icon {
    display: block;
  }
}

/*# sourceMappingURL=index.css.map */
