header('Content-type: text/css');
/* 
 * CSS Document 
 * https://jqueryui.com/demos/
 * https://www.w3schools.com/cssref/css_selectors.php
 * https://www.w3schools.com/cssref/tryit.php?filename=trycss_cursor
 */
html, body {
}
/* 
 * **************
 * SIZE VARIABLES 
 */
:root {
}

/****************/
/* *** tabs *** */
/*
 Pure CSS tabs.
 https://codepen.io/makzan/pen/MWYMVoM
*/
/* For debug only */
.tabs {
  /* Step 1: Enable Flex on the container */
  display: flex;
  /* Step 2: Enable flex-wrap to put content section below tab label */
  flex-wrap: wrap;
}
.tabs.hidden {
  display: none;
}
.tabs > input {
  /* Make sure the inputs don’t take up space in layout */
  position: absolute;
  width: 0;
  height: 0;
  /* Hide the radio inputs */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  opacity: 0;
}
.tabs > label {
  order: 1;
}
.tabs > section {
  /* Step 3: Move content <section> to the end, after the tab labels */
  order: 999;
  /* Step 4: Make sure the content <section> is 100% width */
  width: 100%;
  /* Step 5: Hide all content <section> by default */
  display: none;
  padding: 1em;
}
/* Step 10: Select the section right next to the label which is next to the selected input */
.tabs > input:checked + label + section { /* input[type=radio] */
  /* Step 11: Unset the 'display:none' we did in step 5 */
  display: unset;
}

/* Done. Make sure to disable the debug code at the beginning of CSS. And now it is time to make the tabs look good */
/* Make the tabs look good */
/* Final Step: Make the tabs pretty with padding and colors */
.tabs > label {
  padding: 0.5em 1em;
  border-right-width: 0.3125em;
  border-right-style: solid;
}

.tabs > label:last-of-type {
  border-right: none;
}

.tabs > section {
  border-width: 0.125em;
  border-style: solid;

  border-top-width: 0.3125em;
  border-top-style: solid;
/*  padding: 1em; */

  overflow: auto;
  transition: all .35s;

}

/*.tabs */
.tabs {
  border-color: var(--themeDarker); /* #798f99 */
  }
.tabs > label {
  background: var(--selectedLight); /* #b4d5e4 */
  border-color: var(--themeDarker); /* #798f99 */
  }
.tabs > input:checked + label { /* input[type=radio] */
  background: var(--selected); /* #798f99 */
  box-shadow: 0 0.8em 1em 0 var(--blackFour), 0 0.9em 2em 0 var(--blackThree);
  }
.tabs > label:hover,
.tabs > input:checked + label:hover {
  background-color: var(--selectedHover);
  box-shadow: 0 0.8em 1em 0 var(--blackFour), 0 0.9em 2em 0 var(--blackThree);
  }
.tabs section {
  border-color: var(--themeDarker); /* #798f99 */
  }
