body {
    font-family: 'Fira Sans', sans-serif;
    margin: 0;
}

h1 {
    text-align: center;
}

form {
    display: flex;
    top: 250px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
table {
    display: flex;
    top: 250px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 250px;
    font-size: xx-large;
}
th {
    font-weight: 400;
    font-style: italic;
}
#table-con td {
    border-bottom: 0px solid black;
}
th, td {
    border-right: 3px solid black;
    border-bottom: 3px solid black;
    margin: 0;
    padding: 15px;
}
#table-con.winner {
    background-color: rgba(255,0,57,1);
}
#table-pro.winner {
    background-color: rgba(0,255,45,1);
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro {
    display: block;
}

.con {
    display: block;
}

main {
    display: grid;
    place-items: center;
    height: 100vh;
}

form p {
    text-align: center;
}

header {
    z-index: 10;
    background: #fff;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 150px;
}

footer {
    z-index: 10;
    background: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: fit-content;
    display: grid;
    place-items: center;
}

input {
    font-family: 'Fira Sans', sans-serif;
    opacity: 1;
    border-radius: 50px;
    font-size: x-large;
    margin: 10px;
    padding: 7px;
    border: 3px solid black;
    margin-left: 2.5px;
    max-width: 40vw;
}

input:focus {
    border: 3px solid black;
}

.bar {
    background: black;
    width: 3px;
    border-radius: 5px;
    transition: all 1s;

}

.animation {
    transition: all 1s;
    opacity: 0;
    z-index: -1;
    padding: 0;
    font-size: 0;
}
.show {
    z-index: 1;
    padding: 7px;
    font-size: 18pt;
}

.indicator {
    text-align: center;
    border-bottom: 3px solid black;
    position: sticky;
    top: 150px;
    background-color: white;
    z-index: 10;
}
.indicator h3 {
    font-size: x-large;
    margin-bottom: 0;
}
.indicator p {
    margin-top: 2px;
}

.disabled {
    border: 3px solid gray;
    opacity: 0.5;
    z-index: 1;
}

.enabled {
    border: 3px solid black;
    opacity: 1;
}

.circle {
    background-color: #fff900;
    border-radius: 50%;
    width: 48pt;
    height: 48pt;
    display: inline-block;
    text-align: end;
    margin-left: 50px;
    transition: all 1s;
}
.arrow {
    position: relative;
    left: calc(50px + 15pt);
    font-size: 40pt;
    transition: all 1s;
}
button:hover > .arrow {
    left: calc(50px + 30pt);
    font-size: 45pt;
}

button {
    background-color: #fff;
    font-size: 24pt;
    border: 3px solid black;
    padding: 10px 15px;
    border-radius: 50px;
    font-family: 'Fira Sans', sans-serif;
    display: flex;
    align-items: center;
    transition: all 1s;
    margin: 20px;
    box-shadow: 10px 10px 0px 0px rgba(255,249,0,0.75);
    -webkit-box-shadow: 10px 10px 0px 0px rgba(255,249,0,0.75);
    -moz-box-shadow: 10px 10px 0px 0px rgba(255,249,0,0.75);
    cursor: pointer;
}
button:hover {
    border-radius: 54px;

}

input.enabled.pro {
    box-shadow: 5px 5px 0px 0px rgba(0,255,45,0.75);
    -webkit-box-shadow: 5px 5px 0px 0px rgba(0,255,45,0.75);
    -moz-box-shadow: 5px 5px 0px 0px rgba(0,255,45,0.75);
}
input.enabled.con {
    box-shadow: 5px 5px 0px 0px rgba(255,0,57,0.75);
    -webkit-box-shadow: 5px 5px 0px 0px rgba(255,0,57,0.75);
    -moz-box-shadow: 5px 5px 0px 0px rgba(255,0,57,0.75);
}

.start {
    width: 100%;
}
.start button {
    box-sizing: border-box;
    width: 100%;
    margin: 7px 0;
}
.start input {
    box-sizing: border-box;
    width: 100%;
    margin: 7px 0;
}
.start .circle {
    margin-left: 90px;
}
.start .arrow {
    left: calc(90px + 15pt);
}
.start button:hover > .arrow {
    left: calc(90px + 30pt);
}

.cred {
    color: rgb(255,0,57);
}
.cgreen {
    color: rgb(0,255,45);
}

.locked:hover {
    cursor: not-allowed;
}

.weight {
    border: 3px solid black;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 5px 5px 0px 0px rgba(255,249,0,0.75);
    -webkit-box-shadow: 5px 5px 0px 0px rgba(255,249,0,0.75);
    -moz-box-shadow: 5px 5px 0px 0px rgba(255,249,0,0.75);
    background: rgba(0,0,0,0);
    font-size: x-large;
    padding: 5px;
    width: 28px;
    height: 28px;
    margin: 10px;
    margin-right: 3.5px;
    transition: all 0.5s;
}
.weight.active:hover {
    transform: scale(90%);
    cursor: pointer;
}
.weight.active:active {
    transform: scale(70%);
}

.flex {
    display: flex;
}

.print {
    font-size: x-large;
    margin: 10px;
    padding: 7px;
    max-width: 250px;
    overflow-y: auto;
    overflow-wrap: break-word;
}

html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0);
}

html::-webkit-scrollbar-thumb {
  background: #4e4e4e;
  border-radius: 25px;
}
#start {
    display: flex;
    position: static;
    left: 50%;
    top: 50%;
    transform: translate(0, 0);
}
.result {
display: flex;
    top: 0;
    position: static;
    left: 50%;
    transform: translateX(0);
    margin-top: 0;
}

@font-face {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url(/media/va9E4kDNxMZdWfMOD5Vvl4jL.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
