.page {
    box-shadow: 0 1px 20px $black;
    background: $white;
    padding: 1rem;

    &-mini {
        max-width: 350px;
        margin: 0 auto;
    }

    h1 {
        text-transform: uppercase;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    h2 {
        text-transform: uppercase;
        font-size: 1.2rem;
        margin-bottom: .7rem;
    }

    h3 {
        display: flex;
        width: 100%;
        font-size: 1.1rem;
        text-transform: uppercase;
        justify-content: center;
        align-items: center;
        text-align: center;

        &:before,
        &:after {
            content: '';
            border-top: 1px solid $gray-300;
            margin: 0 20px 0 0;
            flex: 1 0 20px;
        }

        &:after {
            margin: 0 0 0 20px;
        }
    }

    .sidebar-toggler {
        border: 0;
        background: none;
        display: flex;
        align-items: center;
        padding: 0;
        margin-bottom: 0.5rem;

        svg {
            width: 20px;
            height: 20px;
            margin-right: 0.4rem;

            path {
                fill: #000;
            }
        }
    }
}