.text-secondary {
  color: gray;
}

:root {
  font-size: 14px;
}

* {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}

body {
  color: #000;
  background-color: white;
  background-color: hsl(0, 0%, 95%);
  line-height: 1.5em;
  margin: 0px;
  padding: 0px;
  width: 100%;
}

a {
  color: #1982C4;
}

label {
  margin-top: 1rem;
  display: inline-block;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea, input[type=text], input[type=tel], input[type=email], input[type=password], input[type=date], input[type=time], input[type=number], input[type=range], select {
  font-size: 1rem;
  padding: 0.3em;
  width: 100%;
  height: 2.5em;
  border: 3px solid rgba(255, 255, 255, 0);
  background-color: hsl(0, 0%, 95%);
  border-radius: 2px;
  accent-color: hsl(164, 95%, 40%);
}
textarea:focus, input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus, input[type=password]:focus, input[type=date]:focus, input[type=time]:focus, input[type=number]:focus, input[type=range]:focus, select:focus {
  transition: 0.1s;
  outline: none;
  box-shadow: 0px 0px 0px 2px hsla(164, 95%, 40%, 0.5);
}

input[type=checkbox] {
  font-size: 1rem;
  border: 3px solid rgba(255, 255, 255, 0);
  background-color: hsl(0, 0%, 95%);
  border-radius: 2px;
}
input[type=checkbox]:focus {
  transition: 0.1s;
  outline: none;
  box-shadow: 0px 0px 0px 2px hsla(164, 95%, 40%, 0.5);
}

svg {
  display: block;
}

input[type=text] {
  min-width: 500px;
}

textarea {
  width: 100%;
  min-height: 8em;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table td {
  border: 0;
  padding: 0.25em;
}

.loading {
  background-color: hsl(120, 100%, 85%);
}

.debug {
  padding: 1em;
  background-color: pink;
  color: black;
}

#container {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: 80px 1fr 30px;
}
@media only screen and (max-width: 800px) {
  #container {
    display: flex;
    flex-direction: column;
  }
}

header {
  grid-column: 1/3;
  margin: 0px;
  padding: 10px;
  background-color: #1b1b1b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
header h1 {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  color: white;
  text-transform: uppercase;
  font-weight: normal;
}
@media only screen and (max-width: 800px) {
  header {
    display: none;
  }
}
@media only screen and (min-width: 801px) {
  header {
    display: flex;
  }
}

#header-mobile {
  margin: 0px;
  padding: 0px;
  height: 80px;
  background-color: black;
  display: none;
  justify-content: space-between;
  align-items: center;
  color: white;
}
#header-mobile h1 {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  color: white;
  text-transform: uppercase;
  font-weight: normal;
}
@media only screen and (max-width: 800px) {
  #header-mobile {
    display: flex;
  }
}
@media only screen and (min-width: 801px) {
  #header-mobile {
    display: none;
  }
}

nav {
  display: none;
  grid-column: 1/2;
  padding: 20px 40px;
  font-weight: normal;
}
nav ul {
  list-style: none;
  padding-left: 0em;
  margin: 0;
}
nav li {
  width: 100%;
  position: relative;
  padding: 0.8em 1em;
  border-radius: 8px;
  text-decoration: none;
}
nav a {
  color: #1a1a1a;
  text-decoration: none;
}
nav a svg {
  fill: hsla(0, 0%, 0%, 0.2);
  fill: hsla(164, 96%, 35%, 0.75);
  transform: scale(0.9);
}
nav a li:hover {
  background-color: hsla(164, 95%, 40%, 0.1);
  background-color: hsla(0, 0%, 0%, 0.03);
  color: #1a1a1a;
}
nav a li:hover svg {
  fill: hsla(0, 0%, 0%, 0.8);
  fill: hsl(164, 96%, 35%);
  transform: scale(1);
}
nav h3 {
  color: hsl(164, 95%, 25%);
  color: hsl(0, 0%, 35%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  letter-spacing: 0.085em;
  font-size: 0.85em;
  margin-top: 2em;
  margin-bottom: 0.5em;
  padding: 0px;
}
@media only screen and (max-width: 800px) {
  nav {
    display: none;
  }
}
@media only screen and (min-width: 801px) {
  nav {
    display: block;
  }
}
nav svg {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}

.no-scroll {
  overflow-y: hidden;
}

#mobile-layer {
  display: none;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  left: 0px;
  top: 0px;
  transition: all 0.2s ease-out;
}
#mobile-layer #layer-content {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100%;
  background-color: white;
  padding: 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#mobile-layer.open {
  display: block;
}

#nav-mobileORGGGG {
  display: none;
  padding: 20px 40px;
  background-color: hsl(164, 95%, 40%);
  font-weight: normal;
}
#nav-mobileORGGGG ul {
  list-style: none;
  padding-left: 1em;
}
#nav-mobileORGGGG li {
  margin-bottom: 0.5em;
}
#nav-mobileORGGGG a {
  color: hsl(0, 0%, 25%);
  text-decoration: none;
}
#nav-mobileORGGGG a:hover {
  color: hsl(164, 95%, 40%);
}
#nav-mobileORGGGG h3 {
  color: hsl(164, 95%, 35%);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9em;
  margin-top: 2em;
  padding: 0px;
}
#nav-mobileORGGGG.open {
  display: block;
}
@media only screen and (max-width: 800px) {
  #nav-mobileORGGGG {
    display: none;
  }
}
@media only screen and (min-width: 801px) {
  #nav-mobileORGGGG {
    display: none;
  }
}

#user-mobile {
  display: none;
  position: absolute;
  background-color: hsl(164, 95%, 40%);
}
#user-mobile.open {
  display: flex;
}
@media only screen and (max-width: 800px) {
  #user-mobile {
    display: none;
  }
}
@media only screen and (min-width: 801px) {
  #user-mobile {
    display: none;
  }
}

main {
  grid-column: 2/3;
  padding: 40px;
  flex-grow: 1;
  background-color: white;
  border-radius: 8px;
  margin: 10px;
}
@media only screen and (max-width: 800px) {
  main {
    padding: 20px;
  }
}

footer {
  grid-column: 1/3;
  margin: 0px;
  padding: 0px;
  width: 100%;
  min-height: 30px;
  background-color: lightgray;
  background-color: black;
  color: white;
  font-size: 11px;
  padding-left: 0.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.server {
  margin: 0px;
  padding: 0px 0.5em;
  height: 30px;
  background-color: hsl(164, 95%, 40%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

* {
  box-sizing: border-box;
}

.svg-before-test::before {
  display: inline-block;
  content: "";
  vertical-align: -0.125em;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.202 15.967a7.987 7.987 0 0 1-3.552-1.26c-.898-.585-1.101-.826-1.101-1.306 0-.965 1.062-2.656 2.879-4.583C6.459 7.723 7.897 6.44 8.052 6.475c.302.068 2.718 2.423 3.622 3.531 1.43 1.753 2.088 3.189 1.754 3.829-.254.486-1.83 1.437-2.987 1.802-.954.301-2.207.429-3.239.33Zm-5.866-3.57C.589 11.253.212 10.127.03 8.497c-.06-.539-.038-.846.137-1.95.218-1.377 1.002-2.97 1.945-3.95.401-.417.437-.427.926-.263.595.2 1.23.638 2.213 1.528l.574.519-.313.385C4.056 6.553 2.52 9.086 1.94 10.653c-.315.852-.442 1.707-.306 2.063.091.24.007.15-.3-.319Zm13.101.195c.074-.36-.019-1.02-.238-1.687-.473-1.443-2.055-4.128-3.508-5.953l-.457-.575.494-.454c.646-.593 1.095-.948 1.58-1.25.381-.237.927-.448 1.161-.448.145 0 .654.528 1.065 1.104a8.372 8.372 0 0 1 1.343 3.102c.153.728.166 2.286.024 3.012a9.495 9.495 0 0 1-.6 1.893c-.179.393-.624 1.156-.82 1.404-.1.128-.1.127-.043-.148ZM7.335 1.952c-.67-.34-1.704-.705-2.276-.803a4.171 4.171 0 0 0-.759-.043c-.471.024-.45 0 .306-.358A7.778 7.778 0 0 1 6.47.128c.8-.169 2.306-.17 3.094-.005.85.18 1.853.552 2.418.9l.168.103-.385-.02c-.766-.038-1.88.27-3.078.853-.361.176-.676.316-.699.312a12.246 12.246 0 0 1-.654-.319Z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
}

.leiska-wrapper {
  text-transform: uppercase;
  color: hsl(164, 95%, 40%);
}
.leiska-wrapper h1 {
  font-size: 4rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
}
.leiska-wrapper i {
  color: lightgray;
  font-weight: normal;
  font-family: "Josefin Sans", sans-serif;
}
.leiska-wrapper div {
  padding: 5rem 6rem 6rem 6rem;
  display: inline-block;
  margin-bottom: 1em;
}

.leiska-light {
  background-color: hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 7%);
}

.leiska-dark {
  background-color: white;
}

.inputWithEndTagCont {
  display: flex;
}

.inputEndTag {
  min-width: 1.8em;
  height: 2.5em;
  display: grid;
  place-items: center;
  background: dodgerblue;
  background: hsl(164, 95%, 40%);
  color: white;
  padding: 0 5px;
  border-radius: 0 5px 5px 0;
}

.button, button, input[type=submit] {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
  padding: 0.5em 1em;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: hsl(164, 95%, 40%);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 0.025em;
  transition: 0.1s;
  border: 0px solid hsl(164, 95%, 40%);
  border: none;
  border-radius: 16px;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
}
.button img, button img, input[type=submit] img {
  display: block;
}
.button:hover, button:hover, input[type=submit]:hover {
  background-color: hsl(0, 0%, 95%);
  color: white;
  cursor: pointer;
}
.button:hover > .tooltip, button:hover > .tooltip, input[type=submit]:hover > .tooltip {
  opacity: 1;
}
.button:focus, button:focus, input[type=submit]:focus {
  outline: none;
  background-color: none;
  box-shadow: 0px 0px 0px 4px hsl(164, 95%, 40%);
}
.button.delete, button.delete, input[type=submit].delete {
  color: red;
  border: 1px solid red;
}

.tooltip {
  opacity: 0;
  pointer-events: none;
  background-color: black;
  color: white;
  text-align: center;
  font-weight: normal;
  text-transform: none;
  border-radius: 999px;
  padding: 5px 20px;
  position: absolute;
  z-index: 1;
  bottom: 130%;
  white-space: nowrap;
  left: 0;
}
.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 1.25em;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

#editor-tabs {
  display: flex;
  align-items: center;
}
#editor-tabs div {
  display: inline-block;
  border-radius: 5px 5px 0 0;
  margin: 0;
  padding: 0;
  background-color: hsl(210, 20%, 96%);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
#editor-tabs div:hover {
  cursor: pointer;
  background-color: white;
}

#popUp {
  z-index: 999;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0px;
  top: 0px;
  opacity: 0;
  pointer-events: none;
  padding: 100px 100px 100px 100px;
  transition: all 0.2s ease-out;
}
#popUp #bar, #popUp #pop {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 1400px;
  border-radius: 5px;
  height: 100%;
  max-height: 1000px;
  background-color: white;
  color: hsl(164, 95%, 40%);
  padding: 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.2s ease-out;
}
#popUp #bar.open, #popUp #pop.open {
  transform: translate(0px, -10px);
}

.closePopUp {
  cursor: pointer;
  align-self: flex-end;
  padding-right: 2em;
}

#sidebar {
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0px;
  top: 0px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-out;
}
#sidebar #bar {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 240px;
  height: 100%;
  background-color: white;
  padding: 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translate(-240px);
  transition: 0.2s ease-out;
}
#sidebar #bar.open {
  transform: translate(0px);
}
#sidebar #bar.close {
  transform: translate(240px);
}
#sidebar #bar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#sidebar #bar li {
  padding: 0.4em;
  font-size: 1.5em;
  font-weight: 400;
  font-family: "Baloo 2", cursive;
}
#sidebar #bar li a {
  text-decoration: none;
  font-weight: 300;
  color: black;
  border: 1px solid none;
  transition: all 0.2s ease-out;
}
#sidebar #bar li a:hover {
  border-bottom: 0.2em solid dodgerblue;
}

.closeSidebar {
  cursor: pointer;
  align-self: flex-end;
  padding-right: 2em;
}

#mediaviewer {
  z-index: 999;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0px;
  top: 0px;
  opacity: 0;
  pointer-events: none;
  padding: 100px 100px 100px 100px;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 800px) {
  #mediaviewer {
    padding: 20px;
  }
}
#mediaviewer #bar {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 1400px;
  border-radius: 5px;
  height: 100%;
  max-height: 1000px;
  background-color: white;
  color: hsl(164, 95%, 40%);
  padding: 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.2s ease-out;
}
#mediaviewer #bar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#mediaviewer #bar li {
  padding: 0.4em;
  font-size: 1.5em;
  font-weight: 400;
  font-family: "Baloo 2", cursive;
}
#mediaviewer #bar li a {
  text-decoration: none;
  font-weight: 300;
  color: black;
  border: 1px solid none;
  transition: all 0.2s ease-out;
}
#mediaviewer #bar li a:hover {
  border-bottom: 0.2em solid dodgerblue;
}
#mediaviewer #viewerImageCont {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: row;
  height: 100%;
  background-color: hsl(0, 0%, 5%);
}
@media only screen and (max-width: 800px) {
  #mediaviewer #viewerImageCont {
    flex-direction: column;
  }
}
#mediaviewer #viewerImage {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: grid;
  place-items: center;
}
#mediaviewer #viewerImageInfo {
  min-width: 200px;
  padding: 1em;
  font-size: 12px;
  text-align: left;
  background-color: hsl(0, 0%, 10%);
}
#mediaviewer #status {
  position: absolute;
  left: 50%;
  bottom: 0;
}

.closeMediaviewer {
  cursor: pointer;
  align-self: flex-end;
  padding-right: 2em;
}

.progress {
  background-color: #999;
  border: 0;
  height: 10px;
  border-radius: 9999px;
  width: 100%;
  text-align: center;
}

.bar {
  border-radius: 9999px;
  background-color: aquamarine;
  height: 100%;
  width: 0%;
}

#filelist {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  max-width: 800px;
}
#filelist .fileItemWrapper {
  position: relative;
}
#filelist .fileItemWrapper .fileTypeTag {
  position: absolute;
  left: 0px;
  font-size: 0.735em;
  padding: 0 0.3em;
  border-radius: 3px 0 3px 0;
  text-transform: uppercase;
  background-color: #05c793;
}
#filelist .fileItem {
  width: 100px;
  height: 100px;
  border-radius: 3px;
  padding: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  display: grid;
  place-items: center;
  outline: 1px solid #e9e9e9;
  transition: all 0.05s ease-out;
}
#filelist .fileItem.loaded {
  background-color: hsl(164, 95%, 40%);
}
#filelist .fileItem:hover {
  outline: 1px solid hsl(164, 95%, 40%);
  transform: scale(1.04);
}

.loading-pulse {
  animation-name: loading-pulse-background;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  filter: blur(2px);
}

@keyframes loading-pulse-background {
  0% {
    background-color: hsla(164, 95%, 40%, 0);
  }
  50% {
    background-color: hsl(164, 95%, 40%);
  }
  100% {
    background-color: hsla(164, 95%, 40%, 0);
  }
}
.c-green {
  background-color: hsl(120, 61%, 50%);
}
.c-green:hover {
  background-color: hsl(210, 100%, 56%);
  background-color: hsl(120, 100%, 45%);
}

.version {
  width: 2em;
  height: 2em;
  padding: 0;
  border-radius: 999px;
}

[contenteditable]:focus {
  outline: none;
  border-radius: 3px;
  box-shadow: 0px 0px 0px 4px rgb(189, 225, 255);
}

.design-menu-cont {
  position: relative;
}

.design-menu {
  margin: 0;
  padding: 0;
  border-radius: 6px 0 0 6px;
  background-color: rgba(189, 225, 255, 0.5);
  height: 100%;
  position: absolute;
  left: -53px;
  width: 50px;
  border-right: 3px dotted rgb(30, 144, 255);
}

.folder {
  box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.2);
  fill: hsl(51, 100%, 60%);
  stroke: gold;
  stroke-width: 1;
}

.folder-cont {
  padding: 2em 3em;
  display: inline-block;
  border-radius: 5px;
}
.folder-cont:hover {
  background-color: hsl(51, 100%, 90%);
}
.folder-cont:focus {
  box-shadow: 0px 0px 0px 4px rgb(189, 225, 255);
}

.feedcont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.feed {
  display: flex;
  flex-direction: row;
  background-color: hsl(0, 0%, 95%);
  width: 350px;
  padding: 20px;
  margin: 5px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.05s ease-out;
}
.feed:hover {
  background-color: hsl(0, 0%, 95%);
  outline: 1px solid hsl(164, 95%, 40%);
  cursor: pointer;
}
.feed:active {
  background-color: hsl(0, 0%, 90%);
  outline: 3px solid hsl(164, 95%, 40%);
}
.feed.nonLink {
  cursor: default;
}

.feed-cat {
  border-left: 8px solid orange;
}

.feed-ser {
  border-left: 8px solid dodgerblue;
}

.feed-selected {
  border-left: 8px solid dodgerblue;
  border-right: 16px solid #05c793;
  border-right: 60px solid limegreen;
}

.feed-additional {
  width: 350px;
  padding: 20px;
  margin: 5px;
  margin-left: 1em;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.05s ease-out;
}
.feed-additional:hover {
  outline: 1px solid hsl(164, 95%, 40%);
  cursor: pointer;
}
.feed-back {
  width: -moz-fit-content;
  width: fit-content;
  border-left: 8px solid hsl(164, 95%, 40%);
}

.feed-next {
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  background-color: hsl(164, 95%, 40%);
}

[data-selected=service] {
  outline: 1px solid hsl(164, 95%, 40%);
  border-right: 64px solid hsl(164, 95%, 40%);
}

[data-booking-tab-selected=false] {
  background-color: lightgrey;
  padding: 1em;
}

[data-booking-tab-selected=true] {
  background-color: hsl(164, 95%, 40%);
  padding: 1em;
}

.hideElement {
  display: none;
}

.portal-list-table {
  /* display: inline-block; */
  border: 0;
  width: 100%;
  padding: 0em;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0 0.5em;
  border-style: hidden;
  text-align: left;
  margin-top: 2em;
}
.portal-list-table tr {
  height: 100%;
  border-radius: 10px;
}
.portal-list-table tr td:first-child {
  border-radius: 10px 0 0 10px;
}
.portal-list-table tr td:last-child {
  border-radius: 0 10px 10px 0;
}
.portal-list-table tr th {
  font-size: 0.9em;
  padding: 0em 1em;
}
.portal-list-table tr td {
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.05);
  padding: 0.5em 1em;
}
.portal-list-table tr:hover td {
  background-color: hsla(0, 0%, 0%, 0.07);
}
.portal-list-table .buttons {
  display: flex;
  gap: 0.25em;
}
.portal-list-table.leiskaa td:nth-child(1) {
  width: auto;
}
.portal-list-table.leiskaa td:nth-child(2),
.portal-list-table.leiskaa td:nth-child(3) {
  width: 30ch;
}
.portal-list-table.leiskaa td:nth-child(4) {
  width: 0;
}
.portal-list-table.user-list td:nth-child(2),
.portal-list-table.user-list td:nth-child(3),
.portal-list-table.user-list td:nth-child(4) {
  width: 20ch;
}
.portal-list-table.user-list .profile {
  display: block;
  width: 40px;
  border-radius: 999%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.grid div {
  padding: 0.5em;
}

.list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
  padding: 10px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  text-overflow: ellipsis;
}
.list > div:nth-child(1) {
  width: 5em;
}
.list > div:nth-child(2) {
  width: 5em;
  width: 10em;
}
.list > div:nth-child(3) {
  width: 6em;
}
.list > div:nth-child(4) {
  width: 8em;
}
.list > div:nth-child(5) {
  width: 4em;
}
.list > div:nth-child(6) {
  width: 4em;
}
.list > div:nth-child(6) {
  width: 4em;
}
.list.titles {
  color: gray;
  margin-top: 2em;
}
.list.rows {
  background-color: hsla(0, 0%, 0%, 0.05);
}
.list.rows:hover {
  background-color: hsla(0, 0%, 0%, 0.08);
}

.portal_item_row {
  display: flex;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  border: 1px solid dodgerblue;
  max-width: 600px;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
}
.portal_item_row.category {
  border-left: 10px solid dodgerblue;
}
.portal_item_row.service {
  border-left: 10px solid #05c793;
}
.portal_item_row:hover {
  background-color: rgb(230, 230, 230);
}

.default_info {
  margin-top: 0.5em;
  display: inline-block;
  background-color: white;
  color: dodgerblue;
  border: 1px solid dodgerblue;
  font-size: 0.8em;
  padding: 0em 0.8em;
  border-radius: 10px 3px 3px 10px;
}
.default_info::before {
  content: "Oletus ";
}

.message {
  background-color: limegreen;
  border-radius: 5px;
  height: 3em;
}

.calendar-wrapper .calendar {
  display: grid;
  flex-direction: row;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-wrapper .calendar2 div {
  padding: 10px;
}
.calendar-wrapper .calendar2 {
  display: grid;
  grid-template-rows: repeat(7, 1fr);
  row-gap: 0px;
  -moz-column-gap: 0px;
       column-gap: 0px;
  background-color: white;
}
.calendar-wrapper .first-day {
  grid-column-start: 1;
}
.calendar-wrapper .baa {
  grid-column-start: 3;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 4;
  background-color: blueviolet;
  opacity: 0.5;
}
.calendar-wrapper .day {
  display: grid;
  grid-template-columns: repeat(1, 75%);
  grid-template-rows: auto;
}
.calendar-wrapper .slot {
  margin: 0px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
}
.calendar-wrapper .slot.range {
  background-color: none;
  border: 1px solid rgb(226, 226, 226);
  color: gray;
}
.calendar-wrapper .slot.available {
  background-color: lightyellow;
}
.calendar-wrapper .slot.available:hover {
  background-color: yellow;
}
.calendar-wrapper .slot.booked {
  background-color: limegreen;
}
.calendar-wrapper .slot.booked:hover {
  background-color: green;
}
.calendar-wrapper .slot.booked.time_before {
  background-color: rgb(67, 163, 67);
  border-radius: 0;
}
.calendar-wrapper .slot.booked.time_after {
  background-color: rgb(67, 163, 67);
  border-radius: 0;
}
.calendar-wrapper .slot.bookable {
  background-color: dodgerblue;
  color: white;
}
.calendar-wrapper .slot.bookable:hover {
  background-color: blue;
  color: white;
}
.calendar-wrapper .slot.modify-selected {
  background-color: yellow;
}
.calendar-wrapper .slot .slot_cont {
  border-radius: 0;
  overflow: hidden;
}
.calendar-wrapper .slot0 {
  background-color: gray;
  padding: 10px;
}
.calendar-wrapper .time {
  grid-row-start: 3;
  grid-row-end: 5;
  background-color: blueviolet;
}
.calendar-wrapper .time2 {
  grid-row-start: 4;
  grid-row-end: 6;
  background-color: chocolate;
}
.calendar-wrapper .time3 {
  grid-row-start: 6;
  grid-row-end: 7;
  background-color: dodgerblue;
}
.calendar-wrapper .day-name {
  background: white;
  border: 1px solid #eee;
}
.calendar-wrapper h1 {
  text-align: center;
}
.calendar-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.calendar-wrapper li {
  padding: 10px;
}

.container {
  width: 100%;
  display: grid;
  grid-template-rows: 6em 3em auto;
  position: relative;
}

.title {
  background: hsl(164, 95%, 40%);
  text-align: center;
  display: grid;
  place-content: center;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-radius: 5px 5px 0 0;
}

.days {
  background: #f3f2f1;
  display: grid;
  place-content: center;
  text-align: center;
  grid-template-columns: 3em 10px repeat(7, 1fr);
  position: sticky;
  top: 6em;
  z-index: 10;
  border-bottom: 2px solid #dadce0;
}

.day {
  border-left: 1px solid hsl(164, 95%, 40%);
}

.content {
  display: grid;
  grid-template-columns: 3em 10px repeat(7, 1fr);
  grid-template-rows: repeat(24, 3em);
  background-color: rgba(0, 0, 0, 0.02);
}

.time {
  grid-column: 1;
  text-align: right;
  font-size: 80%;
  position: relative;
  color: #333;
  font-weight: bold;
  padding-right: 2px;
  border-left: 1px solid #dadce0;
  border-bottom: 1px solid #dadce0;
}

.half {
  color: #999;
  font-weight: normal;
}

.col {
  border-right: 1px solid #dadce0;
  border-bottom: 1px solid #dadce0;
  grid-row: 1/span 24;
  grid-column: span 1;
}

.filler-col {
  grid-row: 1/-1;
  grid-column: 2;
  border-right: 1px solid #dadce0;
}

.row {
  grid-column: 1/-1;
  grid-row: 2/span 2;
  border-bottom: 1px solid #dadce0;
}
.row:nth-child(odd) {
  border-bottom: 1px dotted hsl(164, 95%, 40%);
  border-bottom: 1px dashed hsl(164, 95%, 40%);
  border-bottom: 1px dashed lightgray;
}

.event {
  padding: 5px;
  margin-right: 5%;
  text-decoration: none;
}
.event:hover {
  outline: 2px solid hsl(164, 95%, 50%);
  cursor: pointer;
}
.event > div {
  font-size: 0.8em;
}

.weekend {
  background-color: rgba(0, 0, 0, 0.04);
}

.slot {
  pointer-events: none;
  background-color: hsla(44, 100%, 61%, 0.2);
  background-color: hsla(0, 0%, 100%, 0.6);
  background-color: hsl(0, 0%, 100%);
  border-top: 0px solid #32cd32;
  border-bottom: 0px solid #32cd32;
  margin-right: 1px;
  z-index: -1;
}

.slotTag {
  height: 14px;
  font-size: 6px;
  line-height: 14px;
  background-color: white;
  position: relative;
  top: -19px;
  left: -6px;
  border-radius: 0px 4px 0 0;
  display: grid;
  place-content: center;
  width: 80px;
  color: hsla(164, 95%, 40%, 0.8);
  color: hsla(0, 0%, 0%, 0.6);
  color: hsl(0, 0%, 0%);
  border-left: 3px solid hsla(164, 95%, 40%, 0.8);
  z-index: 1;
}

.booking {
  border-radius: 5px;
  background-color: hsla(164, 95%, 40%, 0.8);
}

.own {
  border-radius: 5px;
  background-color: #FF595E;
  border-color: #bcc3e5;
}

.calendar1 {
  background-color: hsla(164, 95%, 40%, 0.8);
  border-color: #bcc3e5;
}

.calendar2 {
  background-color: #b3e1f7;
  border-color: #81cdf2;
}

.current-time {
  border-top: 2px solid #ea4335;
  position: relative;
}

.circle {
  width: 12px;
  height: 12px;
  border: 1px solid #ea4335;
  border-radius: 50%;
  background: #ea4335;
  position: relative;
  top: -6px;
  left: -6px;
}

.current {
  font-weight: bold;
}

.closeCalendarEventViewer {
  cursor: pointer;
  align-self: flex-end;
  color: black;
}
.closeCalendarEventViewer :hover {
  color: red;
}

#calendarEventViewer {
  z-index: 999;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0px;
  top: 0px;
  opacity: 0;
  pointer-events: none;
  padding: 40px;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 800px) {
  #calendarEventViewer {
    padding: 20px;
  }
}
#calendarEventViewer #content {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 800px;
  border-radius: 5px;
  max-height: 100%;
  background-color: white;
  padding: 2em;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.2s ease-out;
}
#calendarEventViewer #content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#calendarEventViewer #content li {
  padding: 0.4em;
  font-size: 1.5em;
  font-weight: 400;
  font-family: "Baloo 2", cursive;
}
#calendarEventViewer #content li a {
  text-decoration: none;
  font-weight: 300;
  color: black;
  border: 1px solid none;
  transition: all 0.2s ease-out;
}
#calendarEventViewer #content li a:hover {
  border-bottom: 0.2em solid dodgerblue;
}
#calendarEventViewer #viewerImageCont {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: row;
  height: 100%;
  background-color: hsl(0, 0%, 5%);
}
@media only screen and (max-width: 800px) {
  #calendarEventViewer #viewerImageCont {
    flex-direction: column;
  }
}
#calendarEventViewer #viewerImage {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: grid;
  place-items: center;
}
#calendarEventViewer #viewerImageInfo {
  min-width: 200px;
  padding: 1em;
  font-size: 12px;
  text-align: left;
  background-color: hsl(0, 0%, 10%);
}
#calendarEventViewer #status {
  position: absolute;
  left: 50%;
  bottom: 0;
}

.shopItems {
  display: grid;
  gap: 1em;
}
.shopItems > a {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  background-color: #f5f5f5;
}

.priceDisplayStart {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
}

.priceDisplayEnd {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
}

.dashElementCont {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.dashElement {
  flex: 0 1 320px;
  margin: 1em;
  padding: 1em;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.dashElement .dashElementTitle {
  font-size: 1.25em;
  color: hsl(164, 95%, 40%);
  color: #333;
  margin-bottom: 0.75em;
}
.dashElement .secondaryInfoText {
  color: hsl(164, 95%, 40%);
}
.dashElement.spotti {
  background-color: hsl(164, 95%, 40%);
}/*# sourceMappingURL=main.css.map */