@charset "utf-8";
html {
    background-color: rgb(255,255,255);
}

body {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    padding: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Kiwi Maru", serif;
}

button, label {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    border-radius: 20px;
    border: none;
    background-color: rgb(247, 197, 197);
    box-shadow: 0 5px 0 rgb(207, 157, 157);
    color: rgb(77, 77, 77);
    font-size: 14px;
    font-family: "Kiwi Maru", serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:active, label:active {
    box-shadow: none;
    transform: translateY(5px);
}

input[type="text"], input[type="password"], input[type="number"] {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 120px;
    height: 20px;
    border-radius: 18px;
    border: 1px solid rgb(207, 157, 157);
    background-color: rgb(255, 255, 255);
    color: rgb(77, 77, 77);
    font-size: 14px;
    font-family: "Kiwi Maru", serif;
    touch-action: manipulation;
}

input[type="date"] {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 122px;
    height: 27px;
    border-radius: 18px;
    border: 1px solid rgb(207, 157, 157);
    background-color: rgb(255, 255, 255);
    color: rgb(77, 77, 77);
    font-size: 14px;
    font-family: "Kiwi Maru", serif;
    touch-action: manipulation;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: flex;
    text-align: center;
    text-align-last: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 138px;
    height: 28px;
    border-radius: 18px;
    border: 1px solid rgb(207, 157, 157);
    background-color: rgb(255, 255, 255);
    color: rgb(77, 77, 77);
    font-size: 14px;
    font-family: "Kiwi Maru", serif;
    touch-action: manipulation;
}

p {
    margin: 0 auto;
    color: rgb(77, 77, 77);
    font-size: 14px;
    font-family: "Kiwi Maru", serif;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 10px;
    overflow-y: scroll;
}

th, td {
    border: 1px solid rgb(181, 195, 160);
    text-align: left;
    padding: 4px;
    white-space: normal;
    font-size: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

th {
    background-color: rgb(221, 235, 200);
    color: rgb(77, 77, 77);
}
tr:active {
    background-color: rgb(243, 173, 191);
}
tr:hover {
    background-color: rgb(243, 173, 191);
}

@keyframes pulse {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: .25;
        transform: scale(.75);
    }
}
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1000;
}
.pulse_container {
    width: 120px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pulse_bubble {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(221, 235, 200);
}
.pulse_bubble_00 {
    animation: pulse .4s ease 0s infinite alternate;
}
.pulse_bubble_01 {
    animation: pulse .4s ease .2s infinite alternate;
}
.pulse_bubble_02 {
    animation: pulse .4s ease .4s infinite alternate;
}

header {
    position: fixed;
    top: 0%;
    left: 0%;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 10%;
    background:radial-gradient(
        rgb(247, 197, 197),
        rgb(207, 157, 157)
    ); 
    z-index: 2;
    justify-content: space-between;
}
header .logo_img {
    margin-left: 10px;
    max-height: 80%;
}
header .hamburger_menu {
    width: 30px;
    height: 25px;
    margin: 0px 20px 0px 0px;
    position: relative;
    cursor: pointer;
    z-index: 11;
}
header .hamburger_menu span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: rgb(90, 90, 90);
    transition: all 0.3s ease;
}
header .hamburger_menu span:first-of-type {
    top: 0%;
}
header .hamburger_menu.active span:first-of-type {
    transform: rotate(45deg);
    top: 0%;
}
header .hamburger_menu span:nth-of-type(2) {
    top: 50%;
}
header .hamburger_menu.active span:nth-of-type(2) {
    opacity: 0;
}
header .hamburger_menu span:last-of-type {
    top: 100%;
}
header .hamburger_menu.active span:last-of-type {
    transform: rotate(-45deg);
    top: 0%;
}

header .menu_screen {
    position: fixed;
    top: 0;
    right: -50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: rgb(221, 235, 200);
    transition: right 0.3s ease;
    z-index: 10;
}
header .menu_screen.active {
    right: 0;
    box-shadow: -5px 0 20px rgb(90, 90, 90);
}
header .menu_screen button,
header .menu_screen label {
    margin-top: 50px;
}

header .menu_screen label:active {
    box-shadow: none;
    transform: translateY(5px);
}

header select {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100px;
    height: 40px;
    border-radius: 20px;
    border: none;
    background-color: rgb(247, 197, 197);
    box-shadow: 0 5px 0 rgb(207, 157, 157);
    color: rgb(77, 77, 77);
    font-size: 14px;
    font-family: "Kiwi Maru", serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
header select:active {
    box-shadow: none;
    transform: translateY(5px);
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /*horaizontal*/
    align-items: center; /*vertical*/
    z-index: 1;
}
main .blc_container {
    width: 80%;
    height: 360px;
    justify-content: center; /*horaizontal*/
    align-items: center; /*vertical*/
    margin: 0px auto 0px auto;
}
main .b_c_00 {
    display: none;
}
main .b_c_00.active {
    display: block;
    width: 95%; /* overwrite */
    height: 80%; /* overwrite */
}
main .b_c_01 {
    display: none;
}
main .b_c_01.active {
    display: flex;
    flex-direction: column;
    width: 95%; /* overwrite */
    height: 80%; /* overwrite */
    justify-content: center; /*horaizontal*/
    align-items: center; /*vertical*/
}
main .b_c_02 {
    display: none;
}
main .b_c_02.active {
    display: block;
    width: 95%; /* overwrite */
    height: 80%; /* overwrite */
}
main .b_c_99 {
    display: none;
}
main .b_c_99.active {
    display: flex;
    flex-direction: column;
    width: 95%; /* overwrite */
    height: 80%; /* overwrite */
    justify-content: center; /*horaizontal*/
    align-items: center; /*vertical*/
}

main .blc {
    width: 300px;
    height: 60px;
    justify-content: center; /*horaizontal*/
    align-items: center; /*vertical*/
    display: flex;
    flex-direction: row;
    margin: 10px auto;
}

main .table_container {
    max-width: 1200px;
    height: 400px;
    margin: auto;
    overflow-y: auto;
}

.table_container.editing input[type="number"],
.table_container.editing input[type="date"],
.table_container.editing input[type="text"],
.table_container.editing select {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: inherit;
    padding: 2px;
    overflow-x: auto;
    white-space: nowrap;
}

main .cell-editor {
    width: 100%;
    box-sizing: border-box;
    font-size: 1em;
    padding: 2px 4px;
    height: 2em;
    min-width: 0;
    max-width: 100%;
}

main .exp_zn {
    width: 40%;
    display: flex;
}
main .inp_zn {
    width: 60%;
    display: flex;
    touch-action: manipulation;
}

main .nav_btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
main #prevButton {
    margin: 20px;
}
main #nextButton {
    margin: 20px;
}

main .chart_container {
    position: relative;
    width: 90%;
    height: 80%;
    margin: 0 auto;
    background: rgb(255, 255, 255);
    padding: 10px;
    box-shadow: 0 4px 8px rgb(207, 157, 157);
    border-radius: 8px;
}

footer {
    position: fixed;
    top: 95%;
    left: 0%;
    display: flex;
    align-items: center;
    width: 100%;
    height: 5%;
    z-index: 2;
    justify-content: space-between;
}

footer .l_triangle {
    display: none;
}
footer .l_triangle.show {
    display: inline;
    cursor: pointer;
    transform: scaleX(-1);
    transition: all 0.3s ease;
}
footer .l_triangle.show:active {
    transform: scaleX(1);
}

footer .r_triangle {
    display: none;
}
footer .r_triangle.show {
    display: inline;
    cursor: pointer;
    transform: scaleX(1);
    transition: all 0.3s ease;
}
footer .r_triangle.show:active {
    transform: scaleX(-1);
}