@charset "UTF-8";
.bars-rwd, .content-rwd {
    display: none;
}

.ico-close {
    position: fixed;
    text-decoration: none;
    top: 1rem;
    right: 1.5rem;
}

.ico-close a {
    color: var(--white);
}

body .content-rwd {
    margin: 0 auto;
    padding: var(--section-margin);
    position: relative;
    width: 90vw;
}

body .content-rwd #close-rwd {
    font-size: 24px;
    position: fixed;
    top: 8px;
    right: 8px;
}

body .content-rwd nav {
    text-align: center;
}

body .content-rwd nav h3 {
    margin-bottom: 1.5rem;
}

body .content-rwd nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

body .content-rwd nav ul li a {
    border-bottom: 1px dotted var(--green-dark);
    display: block;
    font-family: var(--menu-top-font-family);
    font-size: 1.25rem;
    padding: var(--item-margin) 0;
    text-decoration: none;
}

body .content-rwd nav ul li:last-of-type a {
    border: none;
}

body .content-rwd nav ul li.current.active a {
    color: var(--kdp-orange);
    text-decoration: underline;
}

body .content-rwd nav ul ul li a {
    font-weight: 400;
}

body .content-rwd nav ul li a:hover {
    text-decoration: none;
}

body .content-rwd nav ul ul li a:before {
    content: "\000B7";
    margin-right: 4px;
}

body .content-rwd nav ul ul li a:after {
    content: "\000B7";
    margin-left: 4px;
}

/* Current displays */
@media only screen and (min-width: 992px) and (max-width: 1141px) {
}

/* Old desktops */
@media only screen and (max-width: 991px) {
    .bars-rwd {
        display: inherit
    }

    .menu-main {
        display: none;
    }

    body > div.content > header ul.mod-menu {
        justify-content: space-around;
    }
}

/* Tablet */
@media only screen and (max-width: 767px) {
}

/* Mobile */
@media only screen and (max-width: 479px) {
}

