/* CURRENTLY IN: styles/main.css */

html, body {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.book-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.book-wrap__inner {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: no-wrap;
}

.book__col {
    width: 30%;
    max-width: 250px;
    background-color: #1b1c1d;
}

.book__col--40 {
    width: 40%;
}

.book__col--60 {
    width: 60%;
}

.book__col--60,
.book__col--40 {
    height: 100%;
    overflow: auto;
}

.book__inputtext {
    width: 100%;
    height: 100%;
    font-size: 20px;
}

.book__colwrap {
    box-sizing: border-box;
}

.book__content {
    width: 100%;
    background-color: white;
    overflow: auto;
    padding: 20px;
}

#book .book__colwrap {
    width: 100%;
}

#book .colitem {
    background-color: transparent;
    color: white;
    -webkit-transition: all 0.3s ease-in;
       -moz-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
}

#book .colitem:hover {
    background: #2185D0;
}

#book .colheader {
    cursor: pointer;
    background: #2185D0;
    color: white;
}

#book .header a {
    color: white;
}

#book .colheader__title {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

#book .colsection {
    margin: 0;
}

#book .item__active {
    color: #2185D0;
    font-weight: 900;
}

#book .main-content {
    font-weight: 300;
    font-size: 1.5rem;
}

#book .main-content > * {
    width: 80%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

#book .main-content h1 {
    font-weight: 900;
    font-size: 4rem;
    font-variant: small-caps;
}

#book .main-content h2 {
    font-weight: 900;
    font-size: 3rem;
    font-variant: small-caps;
}

#book .main-content h3 {
    font-weight: 900;
    font-size: 2.25rem;
    font-variant: small-caps;
}

#book .main-content h4 {
    font-weight: 900;
    font-size: 2rem;
    font-variant: small-caps;
    margin-top: 0;
    margin-bottom: 0;
}

#book .main-content h5 {
    font-weight: 900;
    font-size: 1.75rem;
    font-variant: small-caps;
    margin-top: 0;
    margin-bottom: 0;
}

#book .main-content h6 {
    font-weight: 900;
    font-size: 1.5rem;
    font-variant: small-caps;
    margin-top: 0;
    margin-bottom: 0;
}

#book .main-content blockquote {
    border-left: 0.5rem solid #2185D0;
    padding-left: 3rem;
}

#book .main-content pre {
    margin-left: -20px;
    margin-right: 0;
    width: calc( 100% + 40px );
    max-width: initial;

    background-color: #272822;
}

#book .main-content pre code {
    width: 80%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;

}

#book .main-content iframe {
    margin-left: -20px;
    margin-right: 0;
    width: calc( 100% + 40px );
    max-width: initial;

    min-height: 600px;
}

#book .main-content .breakout-image {
    margin-left: -20px;
    margin-right: 0;
    width: calc( 100% + 40px );
    max-width: initial;
}

#book .image-roll--three {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 400px;
}

#book .image-roll__col-3 {
    width: 75%;
    border-right: 3px solid white;
    box-sizing: border-box;
}

#book .image-roll__col-3reverseborder {
    border-left: 3px solid white;
    border-right: none;
}

#book .image-roll__col-1 {
    width: 25%;
}

#book .image-roll__img {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#book .image-roll__three-left {
    width: 100%;
    height: 400px;
}

#book .image-roll__three-top {
    width: 100%;
    height: 200px;
    border-bottom: 3px solid white;
    box-sizing: border-box;
}

#book .image-roll__three-bottom {
    width: 100%;
    height: 200px;
}

#book .main-content__row {
    display: flex;
}

@media all and ( max-width: 789px ) {
    #book .main-content__row {
        display: block;
    }

    #book .eggers {
        margin: 0 auto;
    }

    #book .flex-centered {
        text-align: center;
    }
}

#book .flex-centered {
    align-self: center;
}
