@font-face {
    font-family: 'Inter';
    src: url("/static/fonts/Inter.4b73e2ff3024.woff2") format('woff2');
    font-display: swap;
}

html {
	background: #ffffff;
    font-family: Inter;
}

.table_button {
    cursor: pointer;
    line-height: 30px;
    margin: 7px 7px;
    display: flex;
    align-items: center;
    font-size: 0.9em;
    padding: 3px 7px;
    border: 1px solid #E1E1E2;
    border-radius: 5px;
    background: #e2e0eb;
}
.table_button.disabled {
    color: light-dark(graytext, rgb(170, 170, 170));
    opacity: 0.7;
    cursor: unset;
}
.table_button > * {
    margin: 0px 5px;
}
.table_button img {
    width: 20px;
}
.table_button:hover {
    background-color: rgb(170, 170, 170);
}



/* Standards */
.bh_content_panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
	max-width: 1000px;
	width: 100%;
	box-sizing: border-box;
	gap: 10%;
}
.bh_content_panel.left > *:first-child {
    flex: 0 0 20%;
}
.bh_content_panel.left > *:nth-child(2) {
    flex: 0 0 80%;
}
.bh_content_panel.right > *:first-child {
    flex: 0 0 80%;
}
.bh_content_panel.right > *:nth-child(2) {
    flex: 0 0 20%;
}
.bh_content_panel > * > * {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}