::-webkit-details-marker {
    display: none;
}

::placeholder {
    color: #999;
}

:disabled {
    -webkit-text-fill-color: var(--color-black);
}

select:disabled {
    -webkit-text-fill-color: revert;
}

::-webkit-outer-spin-button,
::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

* {
    box-sizing: border-box;
    line-height: 1;
    position: relative;
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    background-color: unset;
    appearance: none;
    max-height: none;
    max-width: none;
}

html,
body {
    height: 100%;
    width: 100%;
    font-weight: 300;
    user-select: none;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

input[type="file"] {
    display: none;
}

input,
select,
textarea {
    width: 100%;
    word-break: normal;
    vertical-align: text-bottom;
    font-size: inherit;
    color: inherit;
}

input,
select,
textarea,
button {
    user-select: revert;
    -webkit-user-select: revert; /* webkit (safari, chrome) browsers */
    -moz-user-select: revert; /* mozilla browsers */
    -khtml-user-select: revert; /* webkit (konqueror) browsers */
    -ms-user-select: revert; /* IE10+ */
}

select {
    line-height: 1.2;
}

textarea {
    resize: none;
}

ul,
ol {
    font-size: inherit;
    margin-left: 2rem;
}

table {
    table-layout: fixed;
    border-spacing: 0;
    border-collapse: separate;
    width: 100%;
}

thead {
    position: sticky;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 5;
    background-color: white;
}

tr {
    transition: transform 0.2s;
}

th,
td {
    vertical-align: middle;
    text-align: left;
    width: 100%;
}

th {
    font-family: "VAG Rounded Bold", "VAG Rounded Next", system-ui;
}

dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 99999;
    visibility: hidden;
}

dialog[open] {
    visibility: visible;
}

dialog::backdrop {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.5);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    overflow: visible;
    font-weight: inherit;
    line-height: 1.1;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

a {
    cursor: pointer;
    color: var(--color-green);
    text-decoration: none;
}

/* Icon */

i {
    font-style: normal;
}

.icon {
    font-family: "Material Symbols Rounded";
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48;
    font-style: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.icon-fill {
    font-family: "Material Symbols Rounded";
    font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 48;
    font-style: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.osano-cm-widget {
    display: none;
}