.site-elv,
.site-hover-elv {
  transition: box-shadow 0.25s;
}

:focus,
a:focus {
  outline: none;
}

.site-spaced {
  gap: 1rem;
}

.site-btn,
.site-control {
  /* padding: 7px 9px; */
  padding: 0.2em 0.5em;
  border-radius: 0;
  transition: all 250ms;
  font-size: 1em;
  font-family: Rubik, Helvetica, monospace, sans-serif, Arial;
  user-select: none;
  text-align: center;
  vertical-align: middle;
}
.site-btn,
select.site-control {
  cursor: pointer;
}

.site-btn:hover,
a:not(:hover) {
  text-decoration: none;
}

.site-blue,
.site-blue-rv {
  border: 1px solid #153b6a44;
}

.site-blue,
.site-btn.site-blue-rv:hover {
  /* background-color: #44f; */

  background-color: #153b6a;
  color: #eef;
}

.site-blue-rv,
.site-btn.site-blue:hover {
  /* color: #44f; */
  color: #153b6a;
  background-color: #eef;
}

.site-btn.site-blue:active,
.site-control.site-blue-rv:active {
  /* color: #22f; */
  color: #07156a;
  background-color: #ccf;
}

.site-btn.site-blue-rv:active,
.site-control.site-blue:active {
  /* color: #22f; */
  color: #ccf;
  background-color: #07156a;
}

.site-red,
.site-red-rv {
  border: 1px solid #f444;
}

.site-red,
.site-btn.site-red-rv:hover {
  background-color: #f44;
  color: #fee;
}

.site-red-rv,
.site-btn.site-red:hover {
  color: #f44;
  background-color: #fee;
}

.site-btn.site-red:active,
.site-control.site-red-rv:active {
  color: #f22;
  background-color: #fcc;
}

.site-btn.site-red-rv:active,
.site-control.site-red:active {
  color: #fcc;
  background-color: #f22;
}

.site-green,
.site-green-rv {
  border: 1px solid #4f44;
}

.site-green,
.site-btn.site-green-rv:hover {
  background-color: #4f4;
  color: #242;
}

.site-green-rv,
.site-btn.site-green:hover {
  color: #242;
  background-color: #efe;
}

.site-btn.site-green:active,
.site-control.site-green-rv:active {
  color: #2f2;
  background-color: #141;
}

.site-btn.site-green-rv:active,
.site-control.site-green:active {
  color: #141;
  background-color: #2f2;
}

.site-btn:disabled, .site-btn.site-disabled, .site-btn.site-disabled:hover {
  background-color: #d8d8d8 !important;
  color: #202020;
  /* pointer-events: none; */
  cursor: not-allowed;
}

textarea.site-control {
  text-align: start;
}

.site-rounded {
  border-radius: 4pt;
}

.site-pill {
  border-radius: 100vmax;
}

.site-rounded,
.site-pill {
  overflow: hidden;
}

.site-brand {
  font-size: large;
  font-family: 'Varela Round', monospace, sans-serif, Arial, Helvetica;
}

.site-elv,
.site-hover-elv:hover,
.site-hover-elv:active {
  box-shadow: 0 0 12px 0px #444;
}

.site-elv:hover,
.site-elv:active {
  box-shadow: 0 0 2px 2px #8888;
}

html,
body {
  margin: 0;
  padding: 0;
  /* background: #f5f6fa; */
  background: #fefefe;
  font-size: 1rem;
  font-family: Rubik, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-nav {
  z-index: 25;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  /* background: linear-gradient(to bottom, #60919fbf, #159365bf); */
  /* background: #44f2; */
  background: #fff;
  color: #420c;
  transition: all 0.5s ease;
  gap: 1rem;
  align-items: center;
  font-size: 1.125em;
  box-shadow: #4d596888 0px 0px 10pt 10pt;
}

#site-sidebar-switch {
  display: none;
}

@media screen and (max-width: 1474px) {

  .site-nav,
  .site-nav .site-flex {
    flex-direction: column;
  }

  .site-nav .site-btn {
    width: 100%;
  }

  .site-nav {
    /* background: #60919fbf; */
    padding: 1rem;
    /* padding-top: calc(1.5rem + 3em); */
    position: fixed;
    top: 0;
    /* right: 0; */
    width: clamp(17.5vw, 192.5pt, 100vw);
    height: calc(100% - env(safe-area-inset-bottom));
    transition: all 0.5s ease;
    gap: 0.5rem;
    overflow-y: auto;
  }

  #site-sidebar-switch {
    z-index: 26;
    display: inline;
    border: 1pt solid #5458;
    background-color: #faf8f8cc;
    width: 2.25em;
    position: absolute;
    right: 1em;
    top: 1em;
  }

  #site-sidebar-switch:active {
    background-color: #eff;
  }

  .site-nav.site-rolledout {
    transform: translateX(100%);
    box-shadow: none;
  }

  .site-nav:not(.site-rolledout)~#site-content * {
    pointer-events: none;
  }
}

@media not screen,
(min-width: 1475px) {
  .site-nav .site-btn {
    height: 100%;
  }
}

/* .site-color-transition {
  width: 100%;
  height: 44pt;
  margin-bottom: -20pt;
  /* position: absolute; *\/
  /* background: linear-gradient(to bottom, #44f8, #44f0); *\/
  background: linear-gradient(to bottom, #4d596888, #1562c212, #f5f6fa00);
} */

.site-lookup {
  border: 1px solid #44f4;
  padding: 4pt;
  font-family: Alef, Rubik, Arial;
  flex: 1;
}

.site-centered-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-flex,
.site-centered-container.site-flex {
  display: flex;
}

.site-fill {
  flex: 1;
}

/* 
.site-group {
  border-radius: 4pt;
  overflow: hidden;
} */

.site-group>* {
  border-radius: 0;
}

.site-group> :first-child {
  border-start-start-radius: 4pt;
  border-end-start-radius: 4pt;
}

.site-group> :last-child {
  border-start-end-radius: 4pt;
  border-end-end-radius: 4pt;
}

.site-link {
  color: #44cc;
  /* text-decoration: none; */
  transition: all 250ms;
  text-decoration: underline #86f0;
  text-decoration-thickness: 0.15em;
  text-underline-offset: 0.2em;
  /* transition: text-decoration-color 300ms, text-underline-offset 300ms; */
}

.site-link:hover {
  text-decoration-color: #86ff;
}

nav .site-link {
  font-family: 'Varela Round', 'Lucida Sans', 'Lucida Sans Regular',
    'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: #191070cc;
  text-decoration: underline #19107000;
  text-decoration-thickness: 0.15em;
  margin: 0 0.25em;
}

nav .site-link:hover {
  text-decoration-color: #191070ff;
}

body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100vh;
}

#site-content {
  flex: 1;
  overflow-y: auto;
  padding-top: 4rem;
  position: relative; /* 15/03/2024 */
}

.site-modal {
  z-index: 50;
  position: fixed;
  right: 0;
  top: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #422a2a44;
  transition: none;
  /* backdrop-filter: blur(1px); */
}

.site-modal-box {
  position: fixed;
  display: flex;
  flex-direction: column;
  /* background-color: #404488f7; */
  /* background-color: #1f2244f7; */
  background-color: #151e38f7;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border: 2pt solid #4444;
  border-radius: 0.5rem;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* transform: translateY(-100%); */
  transform: translateY(-100%) perspective(300vh) rotateX(-120deg);
  width: 88.888888888vw;
  height: 88.888888888vh;
  z-index: 52;
  margin: auto;
  transition: all 800ms cubic-bezier(0.56, -0.43, 0, 1.54);
}

.site-close-btn {
  font-family: 'Varela Round', monospace;
  font-size: large;
  height: 2em;
  width: 2em;
  border-radius: 25%;
  /* outline: 0; */
  text-align: center;
  padding: 0;
  vertical-align: middle;
  border: 1px solid #4442;
  transition: all 100ms;
}

.site-modal-title {
  font-family: 'Varela Round', 'David', system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Open Sans', 'Helvetica Neue', sans-serif;
  max-lines: 1;
  flex: 1;
  text-overflow: ellipsis;
  font-size: 2em;
}

.site-modal-top {
  display: flex;
  align-items: center;
  gap: 1em;
}

.site-modal-box p {
  font-size: 2.4vmin;
  padding: 1em;
  margin: 0;
}

.site-modal-content {
  overflow: auto;
}

#site-content.site-basic-page {
  padding-right: min(6em, 12.5vw);
  padding-left: min(6em, 12.5vw);
  padding-bottom: 4em;
}

@media (max-width: 850px),
(pointer: coarse) {
  #site-content.site-basic-page {
    padding-right: 0;
    padding-left: 0;
  }

  #site-content.site-basic-page>* {
    margin-right: min(6em, 12.5vw);
    margin-left: min(6em, 12.5vw);
  }

  .site-flat-mobile,
  .site-data-table,
  .site-list {
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-right: none !important;
    border-left: none !important;
    width: 100% !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .container {
    padding: 0;
    margin: 0;
  }

  .site-dropdown .site-dropdown {
    position: sticky;
  }
}

@media screen and (hover: hover) {
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 100vmax;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #888;
  }

  ::-webkit-scrollbar-track {
    background-color: #fff4;
    border-radius: 100vmax;
  }
}

#search-form {
  margin: 0;
  display: flex;
}

.site-icon {
  width: 1em;
  height: 1em;
}

.site-icon-intext {
  filter: brightness(25%);
}

.site-li-title {
  font-family: Alef, 'Varela Round', Arial, Helvetica, sans-serif;
}

.site-li-content {
  font-size: 0.82em;
  /* color: #AAA; */
  color: #444;
  /* display: none; */
}

.site-list-striped>.site-li:nth-child(even) .site-li-content {
  /* color: #8AC; */
  color: #9AB;
}

.site-li-desc {
  font-size: 0.65em;
  color: #444;
  font-family: 'Varela Round', Alef, Arial, Helvetica, sans-serif;
}

.site-list-striped>.site-li:nth-child(even) .site-li-desc {
  color: #246;
}

.site-li-desc {
  cursor: pointer;
}

.site-li {
  text-align: start;
  border-bottom: 1px solid #dcc;
  padding: 1em;
  color: #000;
}

.site-list-striped>.site-li:nth-child(even) {
  color: #024;
  background-color: #CCC4;
}

.site-li:last-child {
  border: none;
}

.site-list {
  /* border: max(1pt, 2px) solid #ccc; */
  /* border-radius: max(1.5pt, 3px); */
  border-radius: 1rem;
  /* box-shadow: #aaa 0px 0px max(4pt, 8px) 0px; */
  box-shadow: 0 0 16px 0px #8888;
  list-style-type: none;
  overflow: hidden;
}

.site-list-compact>.site-li {
  padding: 0.5em;
}

.site-list {
  border-collapse: collapse;
}

/* Data Table Component */
.site-data-table {
  box-shadow: 0 0 16px 0px #8888;
  border-radius: 1rem;
  /* border: 1pt solid #4444; */
  overflow: hidden;
  border-spacing: 0;
  border-collapse: collapse;
}

/* A table has <thead> and <tbody> */
table.site-data-table>*>*>*,
:not(table).site-data-table>*>* {
  border: 1pt solid #4444;
  padding: 0.6666666667rem;
}

table.site-data-table>*> :first-child>*,
:not(table).site-data-table> :first-child>* {
  border-top: hidden;
}

table.site-data-table>*> :last-child>*,
:not(table).site-data-table> :last-child>* {
  border-bottom: hidden;
}

table.site-data-table>*>*> :last-child,
:not(table).site-data-table>*> :last-child {
  border-inline-end: hidden;
}

table.site-data-table>*>*> :first-child,
:not(table).site-data-table>*> :first-child {
  border-inline-start: hidden;
}

.site-hidden {
  display: none;
}

.site-dropdown {
  position: fixed;
  z-index: 49;
}

.site-solid {
  background-color: white;
}

.site-plaintext {
  white-space: pre-wrap;
}
.end-note{
  cursor:pointer;
}
.site-li-desc{
  font-size:0.72em !important;
  line-height:1.4 !important ;
  margin-right: 12px;
}
.middle{
  margin-bottom:26px;
  margin-top:12px;
}
.mak_b {
  font-weight: bold;
}
.Synopsis table{
  width:100%;
}
.map_icon{
  width:1.3em;
}
