@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
/* Box sizing rules */
:root {
    --font-size-12s: 0.75rem;
}
.fs-12 {
    font-size: var(--font-size-12);
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    text-rendering: optimizeSpeed;
    font-family: Lato, Arial, sans-serif;
    font-size: 1rem;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.form-check-input:checked {
    background-color: #2a9fe8;
    border-color: #2a9fe8 !important;
}
.form-check-input:checked[type="checkbox"] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.btn-primary {
    color: #ffff;
    border-radius: 3px;
    background: #2a9fe8;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    border: 1px solid #2a9fe8;
}
.btn-primary:hover {
    color: #ffff;
    background: #2a9fe8;
    border: 1px solid #2a9fe8;
}
.btn-primary:active {
    color: #ffff;
    background: #2a9fe8 !important;
    border: 1px solid #2a9fe8 !important;
}
.btn-info {
    color: #ffff;
    border-radius: 3px;
    background: #2384c1;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    border: 1px solid #2384c1;
}
.btn-info:hover {
    color: #ffff;
    background: #2384c1;
    border: 1px solid #2384c1;
}
