body {
    font-family: "Segoe UI";
    line-height: normal;
}

.timerDiv {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    background: radial-gradient(white, whitesmoke);
    padding: 5px 7px 4px 7px;
    border: 1px solid silver;
    border-radius: 5px;
    font-size: 14px;
    font-family: sans-serif;
    box-shadow: 0px 0px 1px 0px rgba(34, 60, 80, 0.2);
    width: 170px;
    text-align: center;
    visibility: hidden;
    color: black;
}

.form-control-right.is-invalid, .was-validated .form-control-right:invalid {
    padding-left: calc(1.6em);
    padding-right: 6px !important;
    background-position: left calc(.4em) center !important;
}

.btn {
    --bs-btn-active-bg: darkseagreen;
    --bs-btn-active-color: white;
}

input[type=file]::file-selector-button {
    display: none;
}

input[type=text]:optional, input[type=number]:optional, input[type=time]:optional, input[type=date]:optional, input[type=email]:optional, input[type=url]:optional, textarea:optional {
    background-image: none !important;
    background-color: var(--bs-tertiary-bg);
}

.hovers:hover {
    box-shadow: inset 0px 0px 10px rgba(128, 128, 190, 0.5) !important;
}

input::placeholder, textarea::placeholder {
    color: lightgray !important;
    font-size: 13px;
    padding: 0px;
    margin: 0px;
}

input[type=radio], input[type=checkbox] {
    box-shadow: inset 0px 0px 4px rgba(128, 128, 128, 0.3), 0px 0px 4px rgba(128, 128, 128, 0.5);
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: lightgray;
    padding-right: 7px;
    background-image: none;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: LightCoral;
    padding-right: calc(1.4em);
    background-position: right calc(.3em) center;
}

select, input[type=checkbox], input[type='radio'] {
    cursor: pointer !important;
}

label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #333;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.linkOut {
    filter: saturate(40%) contrast(50%) brightness(150%);
}

    .linkOut:hover {
        filter: saturate(100%) contrast(100%) brightness(100%);
    }
