/* INDEX SPECIFIC */
#login {
    font-family: "uni";
    color: black;
    font-smooth: never;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.5;
    position: fixed;
    height: 100%;
    width: 100%;
    background-image: var(--body-bg-image);
    background-color: black;
    background-repeat: repeat;
    background-size: var(--bg-size);
    background-position: center center;
    image-rendering: var(--image-rendering);
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: url("img/cursors/c.normal.png"), default;
}
.loginseparator {
    background-image: linear-gradient(to right, #d31e2f, #ffdc60);
    filter: hue-rotate(var(--icon-hue-rotate)) saturate(var(--icon-saturation)) brightness(var(--icon-brightness))
        saturate(var(--icon-saturation));
    height: 7px;
    width: 100%;
    flex-shrink: 0;
}
.window {
    position: absolute;
    z-index: 1000;
    display: block;
    background: #d1d5db;
    box-shadow:
        inset -1px -1px #0a0a0a,
        inset 1px 1px #dfdfdf,
        inset -2px -2px grey,
        inset 2px 2px #fff;
    padding: 3px;
    min-width: 116px;
    min-height: 179px;
    box-sizing: content-box;
}
.ui-resizable-se {
    cursor: url("img/cursors/c.diagonal.png"), se-resize;
}
.ui-resizable-e {
    cursor: url("img/cursors/c.horizontal.png"), e-resize;
}
.ui-resizable-s {
    cursor: url("img/cursors/c.vertical.png"), s-resize;
}
.window.closed {
    display: none;
}
.window.minimizedWindow {
    display: none;
}
.window.fullSizeWindow {
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
	width: calc(100% - 6px)!important;
	overflow-y: hidden;
	height: calc(100% - 6px) !important;
}
.fullSizeWindow .ui-resizable-handle {
    display: none;
}
.windowHeader {
    background-color: #d31e2f;
    height: 33px;
    display: flex;
    background-image: linear-gradient(to right, #d31e2f, #ffdc60);
    filter: hue-rotate(var(--icon-hue-rotate)) saturate(var(--icon-saturation)) brightness(var(--icon-brightness))
        saturate(var(--icon-saturation));
    padding: 1px 2px 0 3px;
    cursor: url("img/cursors/c.move.png"), move;
}
.activeWindow .windowHeader {
    background-image: linear-gradient(to right, #d31e2f, #ffdc60);
}
.windowHeader > span {
    cursor: url("img/cursors/c.point.png"), pointer;
    box-shadow:
        inset -1px -1px #0a0a0a,
        inset 1px 1px #dfdfdf,
        inset -2px -2px grey,
        inset 2px 2px #fff;
    background-color: #d1d5db;
    margin-left: 4px;
    margin-top: 4px;
    font-size: 19px;
    padding: 3px 10px;
    font-family: "Arial Black", Gadget, sans-serif;
    line-height: 20px;
    width: 11px;
    height: 20px;
    position: relative;
    overflow: hidden;
}
.windowHeader > span:hover {
    background: rgba(255, 255, 255, 0.3);
}
.windowHeader > span.winclose:hover {
    background: #f15454;
}
.windowHeader > span > span {
    display: inline-block;
    height: 8px;
    width: 10px;
    top: 6px;
    left: 10px;
}
.winminimize > span {
    border-bottom: 3px solid #000;
}
.winmaximize > span {
    border: 2px solid #000;
    border-top: 3px solid #000;
}
.winmaximize > span:nth-child(2) {
    display: none;
}
.fullSizeWindow .winmaximize > span:nth-child(1) {
    margin: 2px 0 0 -4px;
}
.fullSizeWindow .winmaximize > span:nth-child(2) {
    display: inline-block;
    top: 3px;
    left: 9px;
}
.wincontent {
    padding: 10px;
    display: flex;
    box-sizing: border-box;
    text-align: justify;
    text-indent: 10px;
    min-width: 110px;
    min-height: 140px;
    margin-top: 3px;
    margin-bottom: 2px;
    margin-left: 1px;
    margin-right: 1px;
    border: ridge gray 2px;
    background: linear-gradient(
        0deg,
        rgba(210, 228, 240, 1) 0%,
        rgba(255, 245, 245, 1) 29%,
        rgba(255, 255, 255, 1) 55%
    );
    overflow-y: auto !important;
    overflow-x: clip !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: auto !important;
}
.ui-resizable-se {
    z-index: 1001;
    position: absolute;
}
.windowHeader > strong {
    height: 30px;
    display: none;
    text-align: center;
    float: left;
    width: 50px;
    margin: 1px 5px 10px;
    line-height: 29px;
    font-size: 17px;
}
.win-frame {
    background-color: #1b1b1b;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
    height: 70%;
    width: 96%;
    border: ridge #c9c9c9 5px;
    box-shadow:
        inset -1px -1px #0a0a0a,
        inset 1px 1px #dfdfdf,
        inset -2px -2px grey,
        inset 2px 2px #fff;
}
.textbox {
    border: inset;
    resize: none;
    height: 18px;
    margin-top: 5px;
    margin-left: 20px;
    width: 300px;
    overflow: hidden;
    font-family: "win";
    font-size: 14px;
}
@media (max-width: 500px) {
    .textbox {
        width: auto;
    }
    .info {
        width: auto !important;
    }
    form {
        width: auto;
        text-align: left;
        justify-content: center !important;
    }
}
.info {
    width: 400px;
    margin: auto;
}
form {
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
form label {
    font-family: "win";
    padding-top: 6px;
    cursor: url("img/cursors/c.normal.png"), default;
}
.logo {
    height: auto;
    width: 100%;
}
.buttonline {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: baseline;
    justify-content: center;
}
.buttonline a {
    font-family: var(--body-font);
    font-smooth: never;
    text-decoration: none;
    font-size: 14px;
    color: #323232;
    background-color: #dfdfdf;
    height: auto;
    padding: 7px 10px;
    border: outset white;
    cursor: url("img/cursors/c.point.png"), pointer;
    outline: var(--outline) solid #626262;
}
.buttonline a:hover {
    border: inset;
    background-color: #cbcbcb;
    color: black;
}
.buttonline a:visited {
    border: outset white;
    background-color: #dfdfdf;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 25;
}
.hidden {
    display: none;
}
#window0 {
    top: calc(50% - 400px / 2);
    left: calc(50% - 660px / 2);
}
#window0 .wincontent {
    width: 660px;
    height: 400px;
    background: #d5d5d5;
    border: none;
    padding: 0;
    text-indent: 0;
    display: flex;
    flex-direction: column;
    overflow-y: hidden !important;
}
.everythingelse {
    flex: 1;
    overflow-y: scroll;
    padding: 10px 10px 0;
    margin-bottom: 0;
    width: auto;
    height: 100px !important;
}
@media screen and (max-width: 960px) {
    #window0 {
        left: 10px;
    }
}
@media screen and (max-width: 770px) {
    #window0 .wincontent {
        width: 460px;
        left: 100px;
        top: 190px;
        left: -5px;
    }
}
@media screen and (max-width: 540px) {
    #window0 .wincontent {
        width: 320px;
        height: 400px;
        top: 9px;
        left: 10px;
    }
}
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}