/*
=========================================
BASE
Базовые стили MODX Starter.

Этот файл является частью CORE.
Для конкретного сайта его не редактируем.
=========================================
*/


/* =========================
   RESET
========================= */

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

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--font-family);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);

    color: var(--color-text);
    background: var(--color-background);
}


/* =========================
   MEDIA
========================= */

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}


/* =========================
   LINKS
========================= */

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1 {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-tight);
}

h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-tight);
}

p {
    margin-bottom: var(--space-md);
}


/* =========================
   LISTS
========================= */

ul,
ol {
    margin-top: 0;
}


/* =========================
   FORM ELEMENTS
========================= */

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================
   TABLES
========================= */

table {
    width: 100%;
    border-collapse: collapse;
}


/* =========================
   ACCESSIBILITY
========================= */

[hidden] {
    display: none !important;
}
body.menu-open{
    overflow:hidden;
}

/* ==========================================================
   STICKY FOOTER
========================================================== */

html,
body{

    height:100%;

}

body{

    display:flex;

    flex-direction:column;

    min-height:100vh;

}

.site-main{

    flex:1;

}

/* ==========================================================
   LAYOUT
========================================================== */

html{
    height:100%;
}

body{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    background:var(--color-background);

    color:var(--color-text);

}

.site-main{

    flex:1;

}