body,
html {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
}

.blockTransition {
    transition: 0s !important;
}

.btn {
    margin: 0.5em 0.1em;
    transition: 0.1s;
    cursor: pointer;
    border-radius: 0.4em;
    padding: 0.4em;
    height: 3em;
}

.btn.accept {
    background-color: #0B3142;
    border: 1px solid;
    border-color: #d4d1ef;
    color: white;
}

.btn.accept:hover {
    background-color: #d4d1ef;
    color: #0B3142;
    font-weight: 600;
}

.btn.negative {
    background-color: rgb(216, 76, 76);
    color: white;
    border: 1px solid #d33b3b;
}

.btn.negative:hover {
    background-color: rgb(139, 23, 23);
    border-color: rgb(139, 23, 23);
}

.btn.negative:active {
    background-color: rgb(130, 83, 83);
    border-color: rgb(109, 57, 57);
}

.btn.normal {
    border: 1px solid #a7a7a7;
    background-color: #a7a7a7;
}

.btn.normal:active {
    border: 1px solid #3f0a0a;
    background-color: #919191;
}

.btn.normal:hover {
    background-color: #747474;
    color: white;
}

input {
    height: 3em;
    box-sizing: border-box;
    padding: 0.4em;
    font-size: 0.9em;
    border-radius: 0.5em;
    border: 1px solid lightgrey;
    padding-left: 1em;
    flex-shrink: 0;
}

textarea {
    padding: 1em;
    font-size: 0.9em;
    border-radius: 0.5em;
    border: 1px solid lightgrey;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

textarea:focus,
input:focus {
    outline: none;
    border-color: rgb(98, 182, 210);
}

.tbl {
    border: 1px solid black;
    border-radius: 0.4em;
    margin: 1em;
    border-spacing: 0;
}

.tbl tbody {
    text-align: center;
}

.tbl thead {
    background-color: #0f5257;
    color: white;
    border-color: #0f5257;
    border: 1px solid;
}

.tbl thead tr:first-child>th:last-child {
    border-top-right-radius: 0.4em;
}

.tbl thead tr:first-child>th:first-child {
    border-top-left-radius: 0.4em;
}

.tbl th {
    padding: 0.8em;
    font-weight: 500;
}

.tbl td {
    padding: 0.8em;
}

.tbl tr {
    transition: 0.1s;
}

.tbl tbody tr:nth-child(even) {
    background-color: #898890;
}

.tbl tbody tr:hover {
    background-color: #d0b785;
}

.filled {
    width: -webkit-fill-available;
    margin-left: 0px;
    margin-right: 0px;
}

.visibilityCheckbox {
    width: 2em;
    height: 2em;
    transition: 0.1s;
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-color: rgb(178, 178, 178);
    background-position: center;
    border-radius: 0.4em;
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
}

.visibilityCheckbox.visible {
    background-image: url(/assets/visible.png);
}

.visibilityCheckbox.invisible {
    background-image: url(/assets/invisible.png);
}

.label {
    font-weight: 600;
    font-size: 0.85em;
    margin-bottom: 0.4em;
    margin-top: 0px;
    cursor: default;
}

button {
    user-select: none;
    background-color: #cdcdcd;
    border: 0px;
    padding: 0.3em;
    border-radius: 0.2em;
    margin: 0.2em;
    transition: 0.3s;
    color: black;
}

button:hover:enabled {
    background-color: rgb(84, 84, 84);
    color: white;
    cursor: pointer;
}

button:disabled {
    background-color: #dddddd;
    color: gray;
}

button.bigBtn {
    padding: 1em 1em;
}

button.positiveBtn {
    background-color: #6ebb63;
}

button.positiveBtn:hover {
    background-color: #173913;
}

button.negativeBtn:hover {
    background-color: #4b1919;
}