/* Tailwind Color Palette - https://uicolors.app/generate */
:root {
  --corduroy-050:	#f9fafa;
  --corduroy-100:	#f4f5f5;
  --corduroy-200:	#e3e8e6; /* icon color */
  --corduroy-300:	#d0d7d4;
  --corduroy-400:	#9caaa5;
  --corduroy-500:	#6a7a74;
  --corduroy-600:	#586663;
  --corduroy-700:	#3b4542;
  --corduroy-800:	#232a26;
  --corduroy-900:	#161d1a;
  --corduroy-950:	#080d0b;
  --highland-050:	#f3f6ef;
  --highland-100:	#e5ebdc;
  --highland-200:	#ccd8be;
  --highland-300:	#acc096;
  --highland-400:	#8ea774;
  --highland-500:	#748f59;
  --highland-600:	#576e42;
  --highland-700:	#445536;
  --highland-800:	#39462e;
  --highland-900:	#323d2a;
  --highland-950:	#181f14;
  --highland-accent:	#8fe437;
  --matisse-050:	#f2f8fd;
  --matisse-100:	#e4effa;
  --matisse-200:	#c4dff3;
  --matisse-300:	#8fc5ea;
  --matisse-400:	#53a7dd;
  --matisse-500:	#2d8cca;
  --matisse-600:	#1c679f;
  --matisse-700:	#1a598a;
  --matisse-800:	#194c73;
  --matisse-900:	#1a4060;
  --matisse-950:	#112940;
  /* *** COLOR SETTINGS **************************************************************************** */
  --tailwind-color-050:	var(--corduroy-050);
  --tailwind-color-100:	var(--corduroy-100);
  --tailwind-color-200:	var(--corduroy-200);
  --tailwind-color-300:	var(--corduroy-300);
  --tailwind-color-400:	var(--corduroy-400);
  --tailwind-color-500:	var(--corduroy-500);
  --tailwind-color-600:	var(--corduroy-600);
  --tailwind-color-700:	var(--corduroy-700);
  --tailwind-color-800:	var(--corduroy-800);
  --tailwind-color-900:	var(--corduroy-900);
  --tailwind-color-950:	var(--corduroy-950);
  --tailwind-color-accent:	var(--highland-accent);
  /* *** SITEMAP TREE COLOR SETTINGS **************************************************************************** */
  --c-tree-circle-background:	var(--tailwind-color-800);
  --c-tree-label-border:	var(--tailwind-color-800);
  --c-tree-circle-border:	var(--tailwind-color-500);
  --c-tree-borders-open:	var(--tailwind-color-500);
  --c-tree-description:	var(--tailwind-color-200);
  --c-tree-annoying-line:	var(--tailwind-color-800);
  /* *** BUTTON SETTINGS  **************************************************************************** */
  --button-border-style:	solid;
  --button-border-radius:	5px;
  --button-border-width:	1px;
  --button-height:	25px;
  --button-width:	100px;
  --button-padding:	2px;
  --button-margin:	5px;
  --button-display:	block;
  --button-text-decoration:	none;
  --button-overflow:	hidden;
  /* *** TEXT SIZE SETTINGS  **************************************************************************** */
  --textsize-level1:	22px;
  --textsize-level2:	19px;
  --textsize-level3:	16px;
  --textsize-normal:	14px;
  --textsize-small:	10px;
  --textsize-menu:	14px;
  --font-main:	sans-serif;
}

/* *** LAYOUT **************************************************************************** */
* {
  box-sizing: border-box;
}

.MyPageNoGrid {
  background-color: var(--tailwind-color-900);
  color: var(--tailwind-color-100);
  border-color: var(--tailwind-color-800);
  border-style: solid;
  border-radius: 10px;
  border-width: 1px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 1250px;
}

/* ** BACKGROUND ** */
body {
  background-color: var(--tailwind-color-950);
  font-family: var(--font-main);
  /*   padding-left:						20px;
     padding-right:						20px; */
}

/* ** HEADER ** */
.MyHeader {
  background-color: var(--tailwind-color-900);
  color: var(--tailwind-color-100);
  border-color: var(--tailwind-color-800);
  border-style: solid;
  border-radius: 10px 10px 0px 0px;
  border-left: 1px;
  border-right: 1px;
  border-top: 1px;
  border-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 0px;
  max-width: 1250px;
  display: flex;
}

.MyLogo {
  float: left;
  width: 50%;
  margin-left: 20px;
  margin-top: 0px;
}

.MyLogoImage {
  height: 80px;
}

.MyMenu {
  margin-right: 20px;
  margin-top: 20px;
  width: 50%;
}

.MyMenuButton {
  height: 32px;
  float: left;
  padding: 4px;
  margin: 4px;
}

.MyMenuButton:hover {
  background-color: var(--tailwind-color-600);
  border-radius: 5px;
}

.MyMenuButtonFocus {
  height: 32px;
  float: left;
  padding: 4px;
  margin: 4px;
  background-color: var(--tailwind-color-600);
  border-radius: 5px;
}

/* ** CONTENT ** */
.MyContent {
  background-color: var(--tailwind-color-900);
  color: var(--tailwind-color-100);
  border-color: var(--tailwind-color-800);
  border-style: solid;
  border-left: 1px;
  border-right: 1px;
  border-top: 0px;
  border-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  max-width: 1250px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.MyParagraph {
  background-color: var(--tailwind-color-800);
  color: var(--tailwind-color-100);
  border-style: solid;
  border-color: var(--tailwind-color-700);
  border-radius: 10px;
  border-width: 1px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ** FOOTER ** */
.MyFooter {
  background-color: var(--tailwind-color-900);
  color: var(--tailwind-color-100);
  border-color: var(--tailwind-color-800);
  border-style: solid;
  border-radius: 0px 0px 10px 10px;
  border-left: 1px;
  border-right: 1px;
  border-top: 0px;
  border-bottom: 1px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 20px;
  max-width: 1250px;
  display: block;
}

/* 
.MyCopyright {
   margin-left: 						20px;
   margin-bottom: 					20px;
 	width: 								50%;
 	font-size:							var(--textsize-small);
 	font-style:							italic;
	}

.MyContact {
   margin-right: 						20px;
   margin-bottom: 					20px;
 	width: 								50%;
	}
*/
.MyCopyright {
  font-size: var(--textsize-small);
  font-style: italic;
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  position: static;
  justify-content: center;
  align-items: center;
}

.MyContact {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 4px;
  position: static;
  justify-content: center;
  align-items: center;
}

.MyContactButton {
  height: 24px;
  float: left;
  padding: 4px;
  margin: 4px;
}

.MyContactButton:hover {
  background-color: var(--tailwind-color-700);
  border-radius: 5px;
}

/* ** IMAGES ** */
.MyImage {
  max-width: 750px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.MyImageLink {
  text-decoration-line: none;
}

.background-image {
  display: block;
  align-items: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-style: solid;
  border-color: var(--tailwind-color-color-100);
  border-width: 10px;
  border-radius: 5px;
}

.overlay-image {
  position: absolute;
  top: 0px; /* Adjust as needed */
  left: 0px; /* Adjust as needed */
  z-index: 10; /* Ensures the overlay image is on top */
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* *** MEDIA SETTINGS  **************************************************************************** */
@media screen {
  .noshow {
    display: none;
  }
}
@media print {
  .noprint {
    display: none;
  }
}
@media (max-width: 800px) {
  .MyHeader {
    margin-left: 4px;
    margin-right: 4px;
    display: block;
    margin-top: 4px;
    margin-bottom: 0px;
  }
  .MyLogo {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    position: static;
    justify-content: center;
    align-items: center;
  }
  .MyMenu {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4px;
    margin-bottom: 0px;
    position: static;
    justify-content: center;
    align-items: center;
  }
  .MyContent {
    margin-left: 4px;
    margin-right: 4px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .MyParagraph {
    margin-left: 6px;
    margin-right: 6px;
    margin-top: 3px;
    margin-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .MyFooter {
    display: block;
  }
  .MyCopyright {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    position: static;
    justify-content: center;
    align-items: center;
  }
  .MyContact {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 4px;
    position: static;
    justify-content: center;
    align-items: center;
  }
}
/* *** TAGS **************************************************************************** */
a.tag-link {
  font-size: var(--textsize-small);
  border-style: solid;
  border-radius: 25px;
  border-color: var(--tailwind-color-200);
  border-width: 1px;
  color: var(--tailwind-color-200);
  background-color: var(--tailwind-color-800);
  font-variant: small-caps;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration-line: none;
}

a.tag-link:hover {
  color: var(--tailwind-color-800);
  background-color: var(--tailwind-color-200);
  border-color: var(--tailwind-color-800);
  text-decoration-line: none;
}

/* *** TEXT ELEMENTS **************************************************************************** */
h1 {
  font-size: var(--textsize-level1);
  font-weight: bold;
}

h2 {
  font-size: var(--textsize-level2);
  font-weight: bold;
}

h3 {
  font-size: var(--textsize-level3);
  font-weight: bold;
}

a {
  color: var(--tailwind-color-100);
  text-decoration-line: underline;
  font-weight: bold;
}

a:hover {
  color: var(--tailwind-color-100);
  text-decoration-line: none;
  font-weight: bold;
}

/* *** SITEMAP TREE SETTINGS  **************************************************************************** */
/* ul li { list-style: none } */
.tree {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 46px;
  position: relative;
}

.tree .parent {
  position: relative;
  padding-block: 4px;
  list-style: none;
}

.tree .parent::before,
.tree .parent::after {
  content: "";
  position: absolute;
}

.tree .parent::before {
  width: 18px;
  top: 13px;
  left: -18px;
  border-bottom: 1px solid var(--c-tree-circle-border);
}

.tree .parent::after {
  display: block;
  width: 0;
  top: 0;
  left: -27.5px;
  height: 39px;
  border-left: 1px solid var(--c-tree-circle-border);
  bottom: 0;
}

.tree .parent:last-child::after {
  height: 5px;
  bottom: auto;
}

.tree .parent::after {
  height: 100%;
  top: 23px;
}

.tree details[open] > .parent::before,
.tree details[open] > .nested-item::after {
  border-left-color: var(--c-tree-borders-open);
}

.tree .parent.parent:last-child::after {
  content: none;
  bottom: auto;
}

.tree details {
  margin: 0 auto;
}

.details > .nested-list {
  padding: 15px;
}

.tree summary {
  display: block;
  position: relative;
  cursor: pointer;
}

.tree summary::before {
  content: "+";
  position: absolute;
  top: 0;
  left: -37px;
  width: 18px;
  height: 18px;
  text-align: center;
  color: var(--c-tree-circle-border);
  border: 1px solid var(--c-tree-circle-border);
  border-radius: 50%;
  background-color: var(--c-tree-circle-background);
  z-index: 10;
}

.tree::after {
  content: "";
  position: absolute;
  top: -18px;
  left: -27px;
  width: 1px;
  height: 22px;
  background-color: var(--c-tree-annoying-line);
}

.tree details[open] > summary::before {
  content: "=";
  border: 1px solid var(--c-tree-borders-open);
  color: var(--c-tree-borders-open);
}

.tree details[open] > .tree.parent::after {
  display: block;
  width: 0;
  top: 0;
  left: -27.5px;
  height: 39px;
  border-left: 1px solid var(--c-tree-borders-open); /* Change border color here */
  bottom: 0;
}

.tree .nested-list {
  padding: 0 0 0 45px;
}

.tree .nested-item {
  position: relative;
  padding: 10px 0 0 0;
  margin-top: 0;
  list-style: none;
}

.tree .nested-item::before,
.tree .nested-item::after {
  content: "";
  position: absolute;
  left: -17px;
}

.tree .nested-item::before {
  width: 28px;
  top: 18px;
  left: -27px;
  border-bottom: 1px solid var(--c-tree-circle-border);
}

.tree .nested-item::after {
  display: block;
  width: 0;
  top: 0;
  left: -27px;
  height: 45px;
  height: 100%;
  border-left: 1px solid var(--c-tree-circle-border);
  bottom: 0;
}

.tree .nested-item:last-child::after {
  top: 0px;
  height: 19px;
  bottom: auto;
}

.tree .label {
  display: inline-block;
  font-size: 16px;
  padding-inline: 3px;
  color: #ff0000;
  margin-right: 10px;
  border: 1px solid var(--c-tree-label-border);
}

.tree > .parent:last-child {
  padding-bottom: 0;
}

.tree-descr {
  color: var(--c-tree-description);
}

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