/* System-wide styles */

/* Import Inter typeface */
@import url('https://rsms.me/inter/inter.css');

/* Import EB Garamond typeface */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* Import Cormorant Garamond typeface */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

html {
    font-size: 16px;
    color: #222;
    cursor: default;
    box-sizing: border-box;
}

/* Colors */

:root {

    --button-hover-background-color: #EEEEEE;
    --button-active-background-color: #DDDDDD;
    --color-title: rgb(20, 20, 20);
    --color-text-primary: rgb(30, 30, 30);
    --color-link-primary: rgb(0, 120, 212);

    /* Blue RGB */
    --color-blue-01: rgb(237, 245, 255);
    --color-blue-02: rgb(208, 226, 255);
    --color-blue-03: rgb(166, 200, 255);
    --color-blue-04: rgb(120, 169, 255);
    --color-blue-05: rgb(69, 137, 255);
    --color-blue-06: rgb(15, 98, 254);
    --color-blue-07: rgb(0, 67, 206);
    --color-blue-08: rgb(0, 45, 156);
    --color-blue-09: rgb(0, 29, 108);
    --color-blue-10: rgb(0, 17, 65);

    /* Gray RGB */
    --color-gray-01: rgb(248, 249, 250);
    --color-gray-02: rgb(233, 236, 239);
    --color-gray-03: rgb(222, 226, 230);
    --color-gray-04: rgb(206, 212, 218);
    --color-gray-05: rgb(173, 181, 189);
    --color-gray-06: rgb(108, 117, 125);
    --color-gray-07: rgb(73, 80, 87);
    --color-gray-08: rgb(52, 58, 64);
    --color-gray-09: rgb(33, 37, 41);

    /* Red RGB */
    --color-red-01: rgb(229, 56, 59);
    --color-red-02: rgb(186, 24, 27);
    --color-red-03: rgb(164, 22, 26);
    --color-red-04: rgb(102, 7, 8);

}

.hidden {
    display: none !important;
}

.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}


/* Typography */

:root {
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
    :root { font-family: 'InterVariable', sans-serif; }
}

.text-body-14 {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.006em;
}

.text-heading-16 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.011em;
}

.text-heading-18 {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.014em;
}

.text-heading-20 {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.017em;
}

.text-heading-24 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.019em;
}

.text-heading-28 {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.021em;
}

.text-heading-32 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.022em;
}

.text-heading-36 {
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.022em;
}

.text-heading-40 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.022em;
}

.text-heading-48 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.022em;
}

