@font-face {
    font-family: 'Mon';
    src: url(/fonts/Inter_18pt-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Mon';
    scroll-behavior: smooth;
}

a, label {
    text-decoration: none;
    color: #2653C3;
}

svg {
    fill: #2653C3;
}

ul {
    list-style: none;
}

textarea {
    resize: none;
}

h1, h2, h3, h4 {
    color: #2653C3;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    padding: 0.375rem 0.75rem;
    border-color: #2653C3;
    border-style: solid;
    border-width: 1px;
    border-radius: 0.5rem;
    outline-color: #2653C3;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #F7F9F9;
}

th, td {
    padding: 0.25rem;
}

th:first-child,
td:first-child {
    padding-left: 1.5rem;
}

th:last-child,
td:last-child {
    padding-right: 1.5rem;
}

input[type=checkbox] {
    float: left;
    margin-left: -1.5em;

    --bs-form-check-bg: #fff;
    width: 24px;
    height: 24px;
    margin-top: 0.25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    /*background-image: var(--bs-form-check-bg-image);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #495057;
    border-radius: 0.25em;
}

input[type=checkbox]:active {
    filter: brightness(90%);
}

input[type=checkbox]:disabled {
    background-color: #ccc;
}

input[type=checkbox]:checked {
    background-color: #fff;
    border-color: #000;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}