﻿@import url('constants.css');

#splash-page {
    background-color: black;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
    font-size:2vw;
}

body * {
    margin: 0;
}

hr {
    margin: 0; /* Removes the default margin */
    padding: 0; /* Removes any padding */
    border: 0; /* Removes the border */
    border-top: 1px solid #000; /* Adds a top border for the line */
}


textarea:active,
input:active,
textarea:focus,
button:focus,
input:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
    border: var(--N01px) solid var(--StandardColor) !important;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    border-radius: 0px !important;
}



.card-ip {
    border: var(--N01px) solid var(--LightGray);
    border-radius: var(--N05px);
    box-shadow: var(--N02px) var(--N01px) var(--N05px) rgba(200, 200, 200, 0.5);
}




input::placeholder {
    font-size: var(--medium);
    opacity: 0.6 !important;
}

input[type=text] {
    border-radius: 0px !important;
}

.input-group-text {
    border-radius: 0px !important;
}



/* width */
::-webkit-scrollbar {
    width: var(--N10px);
    height: var(--N10px);
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--StandardVeryVeryLight);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--StandardLight);
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--StandardColor);
    }





.panel {
    font-size:var(--medium);
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--White);
    
}

.panel-relative {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--White);
}

.fixed-center-upper {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:500;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.relative-center {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.absolute-top-left {
    position: absolute;
    top: 0%;
    left: 0%;
}
.absolute-top-right {
    position: absolute;
    top: 0%;
    right: 0%;
}
.absolute-top-center, .absolute-center-top {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
}
.absolute-bottom-center, .absolute-center-bottom {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.absolute-left-middle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.absolute-right-middle, .absolute-middle-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}



.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.nodrag {
    -webkit-user-drag: none;
}


.background-modal, .screen-background {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    opacity: 0;
    animation-name: switchon_modal;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.absolute-background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    animation-name: switchon_modal;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes switchon_modal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



.footer-left {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    margin-left: var(--N10px);
}

.footer-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    margin-right: var(--N10px);
}



.appear-gradually {
    opacity: 0;
    animation: appear 0s forwards;
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.appear-gradually:nth-child(1) {
    animation-delay: 0.05s;
}

.appear-gradually:nth-child(2) {
    animation-delay: 0.1s;
}

.appear-gradually:nth-child(3) {
    animation-delay: 0.15s;
}

.appear-gradually:nth-child(4) {
    animation-delay: 0.2s;
}

.appear-gradually:nth-child(5) {
    animation-delay: 0.25s;
}

.appear-gradually:nth-child(6) {
    animation-delay: 0.3s;
}

.appear-gradually:nth-child(7) {
    animation-delay: 0.35s;
}

.appear-gradually:nth-child(8) {
    animation-delay: 0.4s;
}

.appear-gradually:nth-child(9) {
    animation-delay: 0.45s;
}

.appear-gradually:nth-child(10) {
    animation-delay: 0.5s;
}

.t-center{
    text-align:center;
}

.t-date {
    text-align: center;
}

.t-num {
    text-align:right;
}

.t-right {
    text-align: right;
}

.t-left {
    text-align:left;
}

.t-fill {
    white-space: nowrap;
    text-align:left;
}

.aandl-tutorial {
    position: absolute;
    bottom: var(--N50px);
    right: var(--N10px);
    z-index:100;
}


.glossary {
    text-decoration: underline;
    cursor: help;
    pointer-events:all;
}





.flex-center-middle-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.flex-center-middle-col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flex-center-top-col {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.flex-center-top-row {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
}