/* Import Google Fonts for Roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
    margin: 0;
    overflow: hidden;
}

.info {
    width: 100%;
    position: absolute;
    height: 90%;
    background-color: #ffffffe3;
    bottom: -100%;
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    transition: bottom 0.5s ease-in;
}

.button {
    position: absolute;
    left: 5%;
    top: 5%;
    font-family: "Roboto", sans-serif;
    font-size: 2em;
    color: #5b5b5b;
    border: none;
    background: none;
}

.text {
    position: absolute;
    left: 15%;
    top: 15%;
    font-family: "Roboto", sans-serif;
    font-size: 1.5em;
    color: #5b5b5b;
    height: 80%;
    overflow: scroll;
    scrollbar-width: none;
    width: 70%;
}

.text::-webkit-scrollbar {
    display: none;
}

#img {
    height: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
}

#infoTextContent {
    text-align: center;
}

#title {
    font-size: 2em;
    text-align: center;
}

.instruction {
    position: absolute;
    left: 1%;
    font-family: "Roboto", sans-serif;
    font-size: 1.5em;
    color: #5b5b5b;
}

.loading {
    position: absolute;
    font-family: "Roboto", sans-serif;
    font-size: 1.3em;
    font-weight: 300;
    color: #5b5b5b;
    right: 1%;
    text-align: center;
    bottom: 2%;
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.help {
    position: absolute;
    top: 2%;
    right: 1%;
    width: 4vw;
    height: 4vw;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    font-size: 1.8em;
    color: #5b5b5b;
    border-width: 5px;
    border-style: solid;
    border-radius: 10px;
    background: none;
    transition: color 0.3s ease-in;
}

.help:hover {
    color: #858585;
}

.help:active {
    color: #181818;
}
.infoTable {
    position: absolute;
    top: 12%;
    right: 1%;
    width: 4vw;
    height: 4vw;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    font-size: 1.8em;
    text-align: center;
    color: #5b5b5b;
    border-width: 5px;
    border-style: solid;
    border-radius: 10px;
    background: none;
    transition: color 0.3s ease-in;
}

.infoTable:hover {
    color: #858585;
}

.infoTable:active {
    color: #181818;
}

.infoTableContent {
    padding: 0px;
    top: 20%;
    /* transform: translate(50%, 0); */
    margin-top: 0%;
    width: 80%;
    margin-left:auto;
    margin-right:auto;
}

td { 
    padding: 10px;
}

table {
    border-collapse: collapse;
}

tbody tr:nth-child(even) {
    background-color: #dadada;
}
tbody tr:nth-child(odd) {
    background-color: #e9e9e9;
}

thead,
tfoot {
    height: 3vw;
    background-color: #5b5b5b;
    color: #fff;
}