html {
    height: 100%;
    margin: 0;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    height: calc(100% - 35px);
    overflow: hidden;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.hdr-icon {
    color: var(--color-msg1-bg);
}

.container-xxl {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.footer {
    height: 35px;
    margin: auto;
}
    .footer .custom-link {
        color: #000;
        text-decoration: none;
    }


/* colors */

:root {
    --color-blue: #0d6efd;
    --color-bg: #fff;
    --color-input1: #777;
    --color-line: #fff;
    --color-line1: #bbd5f7;
    --color-line2: #0d6dfd;
    --color-msg1: #fff;
    --color-msg2: #333;
    --color-msg1-bg: #0d6efd;
    --color-msg2-bg: #eef3fc;
    --color-text1: #bbd5f7;
    --color-text2: #0d6dfd;
    --color-text3: #fff;
}


/* icons */

.fas {
    min-width: 1.4em;
    display: inline-block;
}


/* input */

input, textarea {
    font-size: 16px;
}


/* measurements */

:root {
    --media-width: 320px;
    --rich-card-width: 100% !important;
    /*--carousel-card-width: 500px !important;*/
    --max-width: 100%;
}
@media (min-width: 600px) {
    :root {
        --media-width: 480px;
        --max-width: 580px;
    }
}
@media (min-width: 992px) {
    :root {
        --media-width: 794px;
        --max-width: 972px;
    }
}
@media (min-width: 1200px) {
    :root {
        --media-width: 960px;
        --max-width: 1180px;
    }
}