@charset "UTF-8";


/*
 * page-nav
 */

.page-nav {
    position: absolute;
    z-index: 100000;
}

@media (max-width: 575px) {
    .page-nav {
        width: 100%;
    }
}

.page-nav .list {
    background: #fff;
    color: #000;
}


/*
 * page-action
 */

.page-action.sticky-top {
    top: -.125rem;
    background: #000;
    border-bottom: thin solid #999;
}


/**
 * page-content
 */

.page-content {
    padding-bottom: 4rem;
}


/**
 * page-notice
 */

.page-notice {
    transition: bottom 1s ease;
}

.page-notice-hidden {
    bottom: -100% !important;
}

.page-notice-content {
    border-radius: .25rem;
}


/**
 * page-logo
 */

.page-logo,
.page-logo--img {
    display: block;
    max-height: inherit;
}


/**
 * page-wrapper
 */

.page-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/**
 * page-wallpaper
 */

.page-wallpaper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-wallpaper-repeat {
    background: center repeat #000;
}

.page-wallpaper-repeat-x {
    background: center repeat-x #000;
    background-size: auto 100%;
}

.page-wallpaper-repeat-y {
    background: center repeat-y #000;
    background-size: 100% auto;
}

.page-wallpaper-cover {
    background: center no-repeat #000;
    background-size: cover;
}

.page-wallpaper-contain {
    background: center no-repeat #000;
    background-size: contain;
}