/* Tokens come from index.css (always co-loaded) */

div#recent_displ {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin: 10px;
    column-gap: 12px;
    margin-bottom: 0px;
}

div.ctrl_wrapper {
    margin: 25px;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: baseline;
}

div#bcrash_wrapper {
    border-radius: 10px;
    border: 2px solid #dfdfdf;
    padding: 20px;
    width: fit-content;
    block-size: fit-content;
    margin: auto;
}

/* div#graph_wrapper {
    width: 100%;
    max-width: 750px;
} */

button {
    background: #00f2c3;
    color: #161618;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    outline: 0;
    cursor: pointer;
    padding: 3px 18px;
    margin-top: 8px;
    margin-bottom: 8px;
    border: 2px solid #00f2c3;
    transition: all 0.3s ease;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
}

button.button_bet {
    padding: 15px;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
}

button.button_copy {
    padding: 3px 8px;
    margin-top: 0px;
}

button:focus,
button:hover {
    text-decoration: none;
    background: #161618;
    color: #00f2c3;
    border-color: #00f2c3;
    outline: none;
    box-shadow: none;
}

input[type=number],
input[type=text] {
    border-radius: .375rem;
    border: 1px solid #dfdfdf;
    background-color: #ffffff17;
    color: #dfdfdf;
    padding: .2rem .3rem;
    padding-right: .3rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
    outline: none;
}

input[type=number]:focus,
input[type=text]:focus {
    border-color: #00f2c3;
    -webkit-box-shadow: 0px 0px 1px 1px #00f2c3;
    box-shadow: 0px 0px 1px 1px #00f2c3;
}

.short_hash_wrapper input {
    max-width: 210px;
}

.checkBox {
    display: block;
    cursor: pointer;
    margin-left: 2px;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 0px 2px #00f2c3;
}

.checkBox div {
    width: 60px;
    height: 60px;
    background-color: #ffffff00;
    position: absolute;
    z-index: 100;
}

.checkBox input[type=checkbox]:checked+div {
    background-color: #00f2c3;
}

.checkBox input[type=checkbox] {
    position: absolute;
    left: 50px;
    visibility: hidden;
}

.transition {
    transition: 300ms ease;
}

.placeholder {
    visibility: hidden;
}