/*
Current Version : 1.0.0.1-a
Release Date    : NA
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: "Noto Sans", sans-serif;
    font-size: 1rem;
    font-weight: normal;
}

button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 128px;
    min-width: fit-content;
    height: 32px;
    border: 0;
    border-radius: 4px;
    padding: .5rem;
    background: none;
    cursor: pointer;
}

button:disabled {
    background-color: #DEDEDE;
    color: #000000;
    cursor: auto;
    pointer-events: none;
}

button:focus { outline: none; }

button:hover { opacity: .7; }

input {
    width: 100%;
    height: 36px;
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    padding: .5rem;
}

input:focus {
    outline: none;
    border: 1px solid #2196F3;
}

progress {
    width: 100%;
    height: 32px;
    border: 1px solid #9E9E9E;
    border-radius: 4px;
    appearance: none;
}

progress::-moz-progress-bar { background-color: #2196F3; }

progress::-webkit-progress-bar { background-color: #F1F1F1; }

progress::-webkit-progress-value { background-color: #2196F3; }

.bg-blue {
    background-color: #2196F3;
    color: #FFFFFF;
}

.bg-light-gray {
    background-color: #F1F1F1;
    color: #000000;
}

.bg-red {
    background-color: #F44336;
    color: #FFFFFF;
}

.container {
    display: flex;
    flex-direction: column;
    width: 80vw;
    min-height: 100vh;
    margin: auto auto;
}

.container-full {
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-height: 100vh;
}

.content { flex: 1; }

.f-big { font-size: xx-large; }

.f-tiny { font-size: x-small; }

.floating-label { position: relative; }

.floating-label label {
    position: absolute;
    left: .5rem;
    top: 6px;
    background-color: #FFFFFF;
    color: #9E9E9E;
    pointer-events: none;
    transition: all 200ms ease;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
    top: -12px;
    font-size: small;
    color: #000000;
}

.loading-banner {
    position: fixed;
    z-index: 1000000000;
    left: 0px;
    top: 0px;
    display:  flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
}

.loading-banner p {
    margin-bottom: 1rem;
    font-size: xx-large;
}

.main {
    display: flex;
    flex-direction: row;
}

.mt-1 { margin-top: 1rem; }

.mt-2 { margin-top: 2rem; }

.mt-3 { margin-top: 3rem; }

.mt-auto { margin-top: auto; }

.panel {
    display: flex;
    flex-direction: column;
    width: 25%;
    height: fit-content;
    margin: auto auto;
    padding: 1rem;
}

.side-nav {
    position: sticky;
    z-index: 999999998;
    top: 0px;
    display: flex;
    flex-direction: column;
    width: 32px;
    height: 100vh;
    background-color: #000000;
    color: #FFFFFF;
}

.side-nav div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.side-nav div p {
    font-size: xx-large;
    color: #2196F3;
}

.side-nav span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    font-size: 24px;
    cursor: pointer;
}

.side-nav span:hover { color: #FFC107; }

.toast {
    display: none;
    flex-direction: column;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 4px;
    box-shadow:
        0px 4px 8px rgba(0, 0, 0, .08),
        0px 12px 24px rgba(0, 0, 0, .12);
}

.toast div:first-child {
    display: flex;
    flex-direction: row;
}

.toast div:first-child p:first-child {
    padding: 0rem 0rem 0rem .5rem;
    font-size: x-large;
}

.toast div:first-child p:last-child { padding: .5rem; }

.toast div:last-child { padding: .5rem; }

.toast div:last-child p {
    font-size: small;
    cursor: pointer;
}

.toast div:last-child p:hover { opacity: .7; }

.toast-manager {
    position: fixed;
    z-index: 1000000;
    width: 20%;
    height: fit-content;
    right: 0px;
    bottom: 0px;
    padding: 1rem;
}

.user-card {
    position: fixed;
    z-index: 999999997;
    left: 32px;
    bottom: 32px;
    display: none;
    flex-direction: column;
    width: 15%;
    height: fit-content;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 4px;
    box-shadow:
        0px 4px 8px rgba(0, 0, 0, .08),
        0px 12px 24px rgba(0, 0, 0, .12);
    padding: 1rem;
    background-color: #FFFFFF;
    color: #000000;
}

.user-information {
    display: flex;
    flex-direction: row;
}

.user-information img { width: 15%; }

.user-information div {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
}

.user-information div p:first-child { font-size: large; }

.user-information div p:last-child { font-size: small; }

.w-15pt { width: 15%; }

@keyframes spin {
    0% { transform: rotate(0deg); }

    100% { transform: rotate(360deg); }
}
