.download-button {
    cursor: pointer;
    outline: 0 !important;
    padding: 6px 16px;
    margin-left: auto;
    margin-right: auto;
    background: #004b87;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 6px 16px;
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    /*transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    */
}

.innerContent {
    overflow: auto;
}

.download-button:hover {
    background: #1a5d93;
    color: #fff;
    text-decoration: none;
    outline: 0;
}

.flex-center {
    display: flex;
    align-items: center;
    gap: 8px;
}

#close {
    cursor: pointer;
    outline: 0 !important;
    padding: 6px 16px;
    margin-left: auto;
    margin-right: 0px;
    background: gray;
    color: white;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 6px 16px;
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    /*transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    */
}

#popUp1 {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
}

.popUpContent {
    width: 90%;
    max-width: 804px;
    max-height: 90%;
    background-color: white;
    height: fit-content;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 24px;
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#feedBack {
    margin: 0 auto 0 auto;
}

#feedBack p {
    margin: 0px !important;
}

input[type="checkbox"] {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color, #000);
    background-color: CanvasText;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}
/* 
label:has(input[type="checkbox"]:checked) {
    color: green;
    font-weight: bold;
}

input[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
}*/

.row {
    display: flex;
    gap: 4px;
    align-items: baseline;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #60a5fa;
    /* blue-400 */
    opacity: 0.25;
    animation: blink 1.1s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.15s;
}

.dot:nth-child(3) {
    animation-delay: 0.30s;
}

@keyframes blink {
    0%,
    100% {
        opacity: 0.25;
        transform: translateY(0);
    }
    35% {
        opacity: 1;
        transform: translateY(-1px);
    }
}

.paused .dot {
    animation-play-state: paused;
}