:root {
    --main: #31291e;
    --hover: #98948e;

    --work: #91886a;
    --agent: #c4666b;
    --manuscript: #239199;
    --secentry: #ce7715;
    --illustration: #708049;
    --ibbg: #7f6d83;
    --ibbd: #ff3132;

    --icon-manuscript: "\f5ac  ";
    --icon-work: "\f15b  ";
    --icon-agent: "\f007  ";
    --icon-secentry: "\f10d  ";
    --icon-illustration: "\f53f  ";
    --icon-ibbg: "\f518  ";
    --icon-ibbd: "\f5da ";

    --main-background: #eae9e8;

    --size-step: 40px;

    --font-awesome-font: "Font Awesome 5 Free";

    --link-color-menu: #31291e;
    --link-color-menu-hover: #98948e;

    --link-color-content: #3b79bb;
    --link-color-content-hover: #0056b3;

    --header-size: 120px;
}

html, body {

}

body {
    margin: 0 auto;
    background-color: #fff;
    font-family: 'Noto Sans', helvetica, arial, sans-serif;
}

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

a:hover {
    color: var(--link-color-content-hover);
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.3rem;
}

h3 {
    font-size: 1.2rem;
}

h1, h2, h3 {
    font-weight: bold;;
}

/* HEADER # # # # # # # # # # # # # # # # */

/* MAIN # # # # # # # # # # # # # # # # */

.placeholder {
    background: #eae9e8;
}

.pin {
    width: 30px;
    height: 30px;
    background-color: #272018;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 30px !important;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.pin:hover {
    background-color: var(--hover);
}

.rtl {
    display: block;
    text-align: right;
    direction: rtl;
}

div.grid {
    display: grid;
}

.bold {
    font-weight: bold;
}

.em {
    font-style: italic;
}

div.right-float {
    float: right;
}