/* *** ReadTheDocs Theme customizations *** */

/* Anchor the product logo and Search Box in the top left, as always visible. */
.wy-side-nav-search {
    position: fixed;
}
.wy-menu.wy-menu-vertical {
    position: absolute;
    top: 166px;
}

/* Position and style the logo-subtitle */
.wy-side-nav-search a {
    margin-bottom: 5px;
}
.wy-side-nav-search .logo-subtitle {
    font-size: 14px; 
    margin-bottom: 15px;
}

/* Square-up the Search input box */
#rtd-search-form input {
    border-radius: 0;
}

/* Let article content expand wider that the default theme of 800px */
.wy-nav-content-wrap {
    background-color: #fcfcfc;
}
.wy-nav-content {
    max-width: 1100px;
}

/* Heading Font - override theme default (Roboto Slab) to same font used in rest of theme (Lato) */
.rst-content .toctree-wrapper>p.caption, h1, h2, h3, h4, h5, h6, legend {
    font-family: Lato, proxima-nova, Helvetica Neue, Arial, sans-serif;
}

/* Adjust whitespace around paragraphs, ordered, and unordered lists */
.rst-content p {
    margin: 9px 0 6px !important;
}
.rst-content ul, .rst-content ol {
    margin-top: 6px !important;
}
.rst-content li {
    margin-bottom: 2px !important;
}
.rst-content h1, .rst-content h2, .rst-content h3,
.rst-content h4, .rst-content h5, .rst-content h6 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}


/* ********** Brand Coloring / Logo Pos ************ */

/* Set background color of the top-left logo / search block to the Brand color */
.wy-side-nav-search {
    background-color: #000;         /* Black */
}

/* Set color for left nav bar top-level section headings to a lighter brand color */
.wy-nav-side .wy-menu p.caption {
    color: #00A45F;                 /* Green */
}

/* Set background and rollover for the left nav bar to a darker brand color */
.wy-nav-side {
    background: #404040;            /* Nearly black */
}
.wy-menu ul li.toctree-l1 a:hover {
    background-color: #00A45F;      /* Green */
}
