/* ****************************** */
/* ****************************** */
/*   Mobile specific buttons      */
/* ****************************** */
/* ****************************** */

/* --------------------------------------------------- */
/*   Hide mobile specific button from desktop version  */
/* --------------------------------------------------- */

.fabMobile {
  display: none;
}

@media only screen and (max-width: 480px) {
  /* ----------------------- */
  /*   first action buttons  */
  /* ----------------------- */

  .fabMobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 56px;
    height: 56px;

    background-color: hsl(0, 0%, 100%);
    /* -webkit-backdrop-filter: blur(5px); */
    /* backdrop-filter: blur(12px); */
    border: 1px solid rgb(225, 225, 225);
    border-radius: 50%;
    box-shadow: rgba(115, 115, 115, 0.322) 0px 2px 8px 0px;

    cursor: pointer;
    z-index: 4;
  }
	.fabMobile:active {
/* background-color: red; */
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .fabMobile p {
    font-size: calc(var(--fontSize) * 0.8);
    user-select: none;
    pointer-events: none;
  }

  .fabMap {
    position: fixed;
    right: 12px;
    bottom: 48px;
  }
  .fabList {
    position: fixed;
    right: 12px;
    bottom: 48px;
  }

	#backBtn {
		position: fixed;
    left: 12px;
    top: 12px;
		display: block;
		width: 56px;
    height: 56px;
		border: none;
		z-index: 10;
		
	}
}

.linkList, .linkList ul {
  /* background-color: hsla(218, 62%, 75%, 0.15); */
  display: flex;
  flex-direction: column;
  padding: 0;
  padding-top: 24px;
}

@media only screen and (max-width: 480px) {
.linkList, .linkList ul {
    padding-top: 0px;
    padding-bottom: 16px;
}
}

.linkList li {
  display: flex;
  flex-direction: row;
  align-items: center;
  transition-duration: 0.25s;
  border-bottom: 1px solid hsl(0, 0%, 90%);
  cursor: pointer;

  background-color: hsl(0, 0%, 100%);
}

.linkList li a {
  display: flex;
  flex-direction: row;
  align-items: center;
	border-bottom: 0;
  width: 100%;
  height: 100%;
  padding: 8px 0;

  color: black;
  text-decoration: none;

  font-size: calc(var(--fontSize) * 0.85);
}

/* ****************************** */
/* ****************************** */
/*   Global buttons               */
/* ****************************** */
/* ****************************** */

/* -------------------------- */
/*   Link List                */
/* -------------------------- */

.linkList a {
  text-decoration-line: blink;
  transition: all 0.5s;
}

.linkList li :hover {
  background-color: hsla(127, 39%, 87%, 0.365);
  color: black;

  transition: all 0.5s;
}

.linkList h4 {
  padding-top: 64px;
  padding-bottom: 16px;
}

.linkList .thumb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;

  background-color: rgb(235, 246, 223);
  height: 64px;
  width: 64px;

  object-fit: cover;
  overflow: hidden;
  cursor: pointer;

  border: 2px solid white;
  border-radius: 50%;

  margin-right: 12px;
  margin-top: 0;
  margin-bottom: 0;

  font-size: calc(var(--fontSize) * 0.8);
}

.linkList .thumb img {
  min-width: 100%;
  min-height: 100%;
}

/* .linkList .thumb:hover {
  width: 76px;
  height: 76px;

  transform: translate( -6px, -6px);
} */

/* -------------------------- */
/*   Buttons Row              */
/* -------------------------- */

.splashNav, #splashNav {
  /* background-color: hsla(0, 45%, 62%, .5);; */
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
  /* align-content: center; */
  width: 100%;
  height: 100%;
  padding: calc(var(--gutter-width) / 2);
  border-width: 0;
  cursor: pointer;
  z-index: 20;
}

@media only screen and (max-width: 820px) {
  .splashNav, #splashNav {
  align-items: flex-end;
  }
}

@media only screen and (max-width: 600px) {
  .splashNav, #splashNav {
  align-items: flex-end;
    justify-content: center;
  }
}


.splashNav .title, #splashNav .title {
  font-size: var(--fontSize);
  align-self: flex-start;
  font-family: SuisseIntl-Medium;
  color: #c6c6c6;
}

.splashNav ul, #splashNav ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}

@media only screen and (max-width: 600px) {
.splashNav ul, #splashNav ul {
  flex-direction: row;
}
}

.splashNav li a, #splashNav li a {
  display: flex;
  justify-content: center;
  align-self: flex-end;
  height: 100%;
  width: auto;
  min-width: 200px;
  background-color: hsla(0, 0%, 0%, 0.135);
  border: 2px solid hsla(0, 0%, 100%, 0.249);
  border-radius: 6px;
  color: rgb(255, 255, 255);
  margin-left: calc(var(--gutter-width) / 2);
  padding: calc(var(--gutter-width) / 2);
  text-decoration: none;
  transition: all 0.15s ease-in-out 0s;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(10px);
}

@media only screen and (max-width: 600px) {
.splashNav li a, #splashNav li a {
  min-width: 0;
}
}

.splashNav li a:hover, #splashNav li a:hover {
  background-color: hsla(0, 0%, 100%, 0.249);
  transform: scale(1.05, 1.05);
}

.splashNav li:first-child, #splashNav li:first-child {
  margin-left: 0;
  cursor: pointer;
  user-select: none;
}

.splashNav li a:active, #splashNav li:active {
  transform: scale(1, 1);
}

/* @media only screen and (max-width: 480px) {
	.splashNav, #splashNav  { 
	  bottom: 0px;
	  z-index: 30;
	  padding: 1rem;
	  transition: all 200ms;
	}
  
	.splashNav li, #splashNav li {
	  margin: 0;
	  padding-left: 0;
	  padding-top: 0;
	  border-bottom: 0px;
	}
  }  */



/* ****************************** */
/* ****************************** */
/*   Search Field                 */
/* ****************************** */
/* ****************************** */


.search-filter {
  /* background-color: hsl(0, 0%, 97%); */
  height: calc(var(--lineHeight)*3);
  /* padding: var(--gutter-width); */
  display: flex;
  align-items: center;
  align-content: flex-start;
  border-bottom: hsl(0, 0%, 95%) 1px solid;
}

@media only screen and (max-width: 480px) {
	.search-filter { 
	  display: none;
	}
}



label {
  display: block;
  margin-right: calc(var(--gutter-width) / 2);
  font-family: "SuisseIntl-Medium";
  font-size: calc(var(--fontSize) * 0.85);
}

input {
  flex-grow: 2;
  height: var(--lineHeight);
  padding: 16px;

  font-family: "SuisseIntl-Medium";
  font-size: calc(var(--fontSize) * 0.85);
}