@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Hanken+Grotesk:400|Inter:700,400");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}
a:focus {
  outline: 2px solid #6006e1;
  outline-offset: 2px;
}
a:focus:not(:focus-visible) {
  outline: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.full-height-screen {
  height: 100vh !important;
 
}
.bitbutton {
  cursor: pointer;
}

.checkbox-container {
    font-family: Inter;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 3px;
    font-size: 11px;
    color: #47474799;
}

.checkbox-container input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: 2px solid #47474740;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: transparent;
    border-color: #47474740;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 2px;
    width: 4px;
    height: 6px;
    border: solid #47474740;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bitbutton:disabled,
.bitbutton.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}