:root {
  --primary-line-height: 1;
  /* text */
  --primary-text-color-header: #ffffff;
  --primary-text-color-normal: #73cfe3;
  --primary-text-size-large: 16pt;
  --primary-text-size-normal: 14pt;
  --primary-text-size-small: 12pt;
  --primary-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --primary-text-header-weight: 100;
  --primary-text-normal-weight: normal;
  /*background*/
  --primary-background-color: rgba(0, 0, 0, 1);
  --primary-shade-color: rgba(0, 0, 0, 0.5);
  /*border*/
  --primary-border-color: #4a8e9d;
  --primary-border-radius: 5px;
  --primary-border-style: solid;
  --primary-border-width: 1px;
  /*scrollbars*/
  --primary-scroll-handle-background-color: #3fa9f5;
  --primary-scroll-track-background-color: #0b1c2d;
  --primary-scroll-hover-color: #6dc2ff;
  --primary-scroll-width: 10px;
  /*buttons*/
  --primary-button-text-color: #b1aeae;
  --primary-button-text-color-hover: #ffffff;
  --primary-button-background-color: #255264;
  --primary-button-background-color-hover: #3c88a7;
  --primary-button-border-color: #255264;
  --primary-button-border-color-hover: #255264;
}

html,
body {
  margin: 0;
  padding: 0;
  line-height: var(--primary-line-height);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--primary-background-color);
  color: var(--primary-text-color-normal);
  font-family: var(--primary-font);
  font-size: var(--primary-text-size-normal);
}

.ai-button:hover,
.close-btn-wrapper:hover {
  background: var(--primary-button-background-color-hover);
  color: var(--primary-button-text-color-hover);
  cursor: pointer;
}

#left-cave-wall {
  position: absolute;
  bottom: 0px;
  left: -500px;
  align-self: stretch;
  top: 0px;
  z-index: 8;
}

#right-cave-wall {
  position: absolute;
  bottom: 0px;
  right: -500px;
  align-self: stretch;
  top: 0px;
  z-index: 8;
}

#background {
  position: absolute;
  top: 0px;
  left: -750px;
  opacity: 0;
}

.background-rotate {
  position: absolute;
  top: 0px;
  opacity: 0;
  transform: rotate(20deg);
  transform-style: preserve-3d;
  transition: 5s;
}

.footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  z-index: 12;
  background: var(--primary-shade-color);
  font-size: var(--primary-text-size-small);
}

.footer>* {
  float: right;
  margin-right: 25px;
}

#msg-container {
  position: absolute;
  top: 10px;
  bottom: 50px;
  background: var(--primary-shade-color);
  position: absolute;
  z-index: 8;
  border-radius: var(--primary-border-radius);
  border-color: var(--primary-border-color);
  border-width: var(--primary-border-width);
  border-style: var(--primary-border-style);
  border: unset;
  padding: 10px 10px 10px 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: flex;
  flex-flow: column;
}

#msg-container>table {
  border: unset !important;
}

h1,
h2,
h3 {
  color: var(--primary-text-color-header);
  font-weight: var(--primary-text-header-weight);
  text-align: center;
}

h1 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
}

h2 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

h3 {
  font-size: clamp(1rem, 1vw, 1.2rem);
}

p,
li,
ol {
  text-align: left;
}

form {
  max-width: 75%;
  display: flex;
  flex-flow: column;
  gap: 5px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

form>label {
  text-align: left;
  font-weight: var(--primary-text-header-weight);

}

form>button {
  background: var(--primary-button-background-color);
  color: var(--primary-button-text-color)
}

.scroll-left {
  direction: rtl !important;
  overflow-y: auto !important;
}

.scroll-left>* {
  direction: ltr !important;
}

/* Width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--primary-scroll-track-background-color);
  /* dark blue / background */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--primary-scroll-handle-background-color);
  border-radius: var(--primary-border-radius);
  border-style: var(--primary-border-style);
  border-width: var(--primary-border-width);
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-scroll-hover-color);
}

.close-btn-wrapper {
  min-width: 25px;
  max-width: 25px;
  float: right;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  border-width: var(--primary-border-width);
  border-color: var(--primary-button-border-color);
  border-radius: var(--primary-border-radius);
  border-style: var(--primary-border-style);
  max-height: 25px;
  position: sticky;
  top: 0;
  right: 0;
  z-index: 10;
}

.close-btn-wrapper * {
  text-decoration: none;
  font-weight: var(--primary-text-header-weight);
  color: var(--primary-button-text-color);
  font-size: 12px;
  padding: 3px;
}

.invisible {
  opacity: 0 !important;
}

.hidden {
  display: none;
}

b,
strong,
th {
  color: var(--primary-text-color-header);
  font-weight: var(--primary-text-header-weight);
}

th,
em {
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 3px;
  padding-bottom: 3px;
}

table,
tbody,
thead,
th,
td,
tr {
  border-collapse: collapse;
  vertical-align: top;
  border-spacing: 0px;
  text-align: center;
  width: 100%;
  align-self: stretch;
  flex-grow: 1;
}
.real-button,
.ai-button:not(.home-button),
form>button {
  border-width: var(--primary-border-width);
  border-color: var(--primary-button-border-color);
  border-radius: var(--primary-border-radius);
  border-style: var(--primary-border-style);
  min-width: 100px;
  text-decoration: none;
  color: var(--primary-button-text-color);
  background: var(--primary-button-background-color);
  font-weight: var(--primary-text-normal-weight);
  display: block;
  text-align: center;
  padding: 5px 5px 5px 5px;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  max-width: min-content;
  white-space: nowrap;

}

.ai-button:hover,
form>button:hover,
.close-btn-wrapper:hover {
  background: var(--primary-button-background-color-hover);
  color: var(--primary-button-text-color-hover);
  border-color: var(--primary-button-border-color-hover);
  cursor: pointer;
}

.robot-msg-content-table {
  width: 100%;

}

.robot-msg-content-table>tr>td>table * {
  text-align: left;

}

table>tbody>tr:first-child:not(.robot-msg-content-table>tr) {
  max-width: min-content;

}

.robot-msg-content-table * {
  min-width: 100px;

}

@media (max-height: 750px) {

  #robotMain,
  #robotMain2,
  #robotShadow {
    display: none !important;
  }
}

@media (min-width: 801px) {
  #msg-container {
    min-width: 800px;
    max-width: 800px;
    left: -400px;
    margin-left: 50%;
    overflow-y: auto;
  }

  #robotMain,
  #robotMain2 {
    position: absolute;
    bottom: -50px;
    right: -700px;
    align-self: stretch;
    z-index: 10;
    min-width: 400px;
    max-width: 45vw;
    max-height: 50vh;
    opacity: 0;
  }

  #robotShadow {
    position: absolute;
    bottom: 50px;
    right: -700px;
    align-self: stretch;
    z-index: 11;
    max-width: 45vw;
    max-height: 50vh;
  }

  .robot-padding-column,
  .robot-padding-box {
    display: none !important;
  }
}

@media (min-width: 551px) and (max-width: 800px) {
  #msg-container {
    left: 25px;
    right: 25px;
    margin-left: auto;
    margin-right: auto;
  }

  #robotMain,
  #robotMain2 {
    position: absolute;
    bottom: -50px;
    right: -700px;
    align-self: stretch;
    z-index: 10;
    min-width: 400px;
    max-width: 45vw;
    max-height: 50vh;
    opacity: 0;
  }

  #robotShadow {
    position: absolute;
    bottom: 50px;
    right: -700px;
    align-self: stretch;
    z-index: 11;
    max-width: 45vw;
    max-height: 50vh;
  }

  .robot-padding-column,
  .robot-padding-box {
    display: none !important;
  }
}

@media (max-width: 550px) {
  #msg-container {
    left: 25px;
    right: 25px;
    margin-left: auto;
    margin-right: auto;
  }

  #robotMain,
  #robotMain2 {
    position: absolute;
    bottom: -50px;
    right: -700px;
    align-self: stretch;
    z-index: 10;
    max-width: 80vw;
    min-width: 80vw;
    max-height: 65vh;
    opacity: 0;
    display: none !important;
  }

  #robotShadow {
    position: absolute;
    bottom: 50px;
    right: -700px;
    align-self: stretch;
    z-index: 11;
    max-width: 80vw;
    min-width: 80vw;
    max-height: 65vh;
    display: none !important;
  }

  .robot-padding-column,
  .robot-padding-box {
    display: none !important;
  }
}