@media only screen and (min-device-width: 800px) {
    html {
        overflow:hidden;
    }
}

* {
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: 'Montserrat', serif;
    color: #fff;
}
header {
    display: none;
}

.with-menu header {
    display: inline-block;
    height: 75px;
    background: #000;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
}

header .link {
    padding: 20px;
    display: inline-block;
}

header .open-sidebar {
    display: none;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
}

header .open-sidebar img,
header .open-sidebar span {
    vertical-align: middle;
}

.with-menu.with-menu-items header .open-sidebar {
    display: block;
}

.link.logo img{
    width: auto;
    height: 40px;
}

.without-logo .link.logo {
    display: none;
}

aside {
    display: none;
}

.with-menu aside {
    display: inline-block;
    position: absolute;
    width: 320px;
    background: rgb(37, 37, 37);
    background: rgba(37, 37, 37, 0.9);
    top: 75px;
    bottom: 0;
    right: -320px;
    transition: right 1s;
    -webkit-transition: right 1s; /* Safari */
    overflow: auto;
    z-index: 101;
}
aside.sidebar-open {
    right: 0;
}

aside.full-floor-plan {
    width: 100%;
}

aside.full-floor-plan .menu {
    display: inline-block;
    width: 20%;
    border-left: 1px solid #525252;
}

aside.full-floor-plan .floor-plan {
    display: inline-block;
    width: 70%;
    vertical-align: top;
}

aside .floor-plan {
    max-width: 100%;
    padding: 10px;
    cursor: pointer;
}
aside .floor-plan  img{
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

aside ul {
    margin: 15px 30px;
    padding: 0 0 30px;
}

aside li {
    list-style: none;
    padding: 15px;
    cursor: pointer;
}

aside li a {
    color: #8b8b8b;
    text-decoration: none;
}

aside li:hover {
    background: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.1);
}

aside .menu li {
    text-transform: uppercase;
}


#container {
    height: 100%;
    min-height: 100%;
    width: 100%;
    margin: 0 auto;
}

.with-menu #container {
    padding: 75px 0 0;
}

.right {
    float: right;
}

.branding,
.description {
    text-align: center;
    display: none;
    margin-top: 10px;
    border-top: 1px solid #444;
    padding: 10px;
}

.branding {
    padding: 10px 0;
    font-size: 10px;
}

.branding .link.logo img {
    height: 15px;
}

.description h3 {
    font-size: 0.8em;
    margin: 20px 0 0;
}

.description p {
    font-size: .7em;
    margin: 5px 0 0;
}

@media screen and (max-width:700px) {
    aside .menu {
        display: inline-block;
        width: 100% !important;
        border-left: none;
        margin: 0;
        padding: 0;
    }

    aside .floor-plan {
        display: inline-block;
        width: 100%  !important;
        vertical-align: top;
    }
}

@media screen and (max-height:500px) {
    .with-menu header {
        height: 36px;
        background: #000;
        color: #fff;
    }

    header .link {
        padding: 1px 20px;
    }

    header .link.logo {
        padding: 5px 20px;
    }

    .with-menu #container {
        padding-top: 36px;
    }

    .link.logo img {
        height: 15px;
    }

    .link.logo img {
        height: 20px;
    }

    .with-menu aside {
        top: 36px;
    }
}
