/* =========================================================
   DMA SIMPLE — BASE
========================================================= */

:root {
    --dma-header-height: 118px;
    --dma-footer-height: 44px;
    --dma-admin-height: 0px;

    --dma-content-width: 1200px;

    --dma-text: #172033;
    --dma-link: #1769aa;
    --dma-surface: rgba(255,255,255,.88);
    --dma-header-bg: #dcecff;
    --dma-footer-bg: #102033;
    --dma-footer-text: #ffffff;
}

body.admin-bar {
    --dma-admin-height: 32px;
}

@media (max-width: 782px) {
    body.admin-bar {
        --dma-admin-height: 46px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    color: var(--dma-text);
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

a {
    color: var(--dma-link);
}

.screen-reader-text,
.dma-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.dma-skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000000;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 14px;
    clip: auto;
    background: #ffffff;
    color: #000000;
}
