html,
body,
.content-wrap {
    /*overflow: hidden;*/
    width: 100%;
    height: 100%;
}

.content-wrap.loading {
    background: url(https://appcria.com/assets/img/loading.gif) no-repeat center center;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    height: 100%;
    overflow-y: hidden;
    z-index: 100001;
}

.content-wrap.dropper-cursor{ 
    position: absolute;
    height: 100%;
    cursor: url(https://appcria.com/assets/img/cursor.cur), auto!important;
}

.container {
    background: #373a47;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    border-style: solid;
    border-width: 1px;
}

.container:hover {    
    border-width: 2px;
}

.menu-wrap a {
    color: #b8b7ad;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
    color: #c94e50;
}

.content-wrap {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.content {
    position: relative;
    background: #b4bad2;
}

.content::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    content: '';
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
    transition: opacity 0.4s, transform 0s 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}


/* Menu Button */

.menu-button {
    position: fixed;
    z-index: 1000;
    margin: 1em;
    padding: 0;
    width: 2.1em;
    height: 2.1em;
    border: none;
    text-indent: 1.5em;
    font-size: 1.5em;
    color: transparent;
    /*background: #333;*/
    background: #FFF;
    overflow-y: hidden !important;
    border-radius: 50px;
}

.menu-button::before {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    bottom: 0.5em;
    left: 0.5em;
    /*background: linear-gradient(#FFF 20%, transparent 20%, transparent 40%, #FFF 40%, #FFF 60%, transparent 60%, transparent 80%, #FFF 80%);*/
    background: linear-gradient(black 20%, transparent 20%, transparent 40%, black 40%, black 60%, transparent 60%, transparent 80%, black 80%);
    content: '';
}

.menu-button:hover {
    opacity: 0.6;
}


/* Close Button */

.close-button {  
    position: absolute;
    background: transparent;
    width: 1.3em;
    right: 4.5%;
    padding: 0px;    
    top: 0.2%;
    border: none;
    margin-top: 1%;
}

.close-button:hover {  
    opacity: 0.7;
}

/*
.close-button {
    width: 1em;
    height: 1em;
    position: absolute;
    right: 5%;
    top: 0.2%;
    padding: 10px;
    overflow: hidden;
    text-indent: 1em;
    font-size: 1.1em;
    border: none;
    background: transparent;
    color: transparent;
}

.close-button::before,
.close-button::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #bdc3c7;
}

.close-button::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-button::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
*/
/* Menu */

.menu-wrap {
    position: absolute;
    z-index: 1001;    
    width: 20%;
/*    width: 25%;*/
    height: 100%;
    background: #222;
    color: #FFF;
    font-size: 1.15em;
    -webkit-transform: translate3d(-340px, 0, 0);
    transform: translate3d(-340px, 0, 0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    overflow: hidden;
}

.menu,
.icon-list {
    height: 100%;
}

.icon-list {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.icon-list a {
    display: block;
    padding: 0.8em;
    -webkit-transform: translate3d(0, 500px, 0);
    transform: translate3d(0, 500px, 0);
}

.icon-list,
.icon-list a {
    -webkit-transition: -webkit-transform 0s 0.4s;
    transition: transform 0s 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.icon-list a:nth-child(2) {
    -webkit-transform: translate3d(0, 1000px, 0);
    transform: translate3d(0, 1000px, 0);
}

.icon-list a:nth-child(3) {
    -webkit-transform: translate3d(0, 1500px, 0);
    transform: translate3d(0, 1500px, 0);
}

.icon-list a:nth-child(4) {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
}

.icon-list a:nth-child(5) {
    -webkit-transform: translate3d(0, 2500px, 0);
    transform: translate3d(0, 2500px, 0);
}

.icon-list a:nth-child(6) {
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
}

.icon-list a span {
    margin-left: 10px;
    font-weight: 700;
}


/* Shown menu */

.show-menu .menu-wrap {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list,
.show-menu .icon-list a {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list a {
    -webkit-transition-duration: 0.9s;
    transition-duration: 0.9s;
}

.show-menu .content::before {
    opacity: 1;
    -webkit-transition: opacity 0.8s;
    transition: opacity 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media (max-width:640px) {
    /* Menu Button */
    .menu-button {
        position: fixed;
        /*z-index: 1000;*/
        margin: .5em;
        padding: 0;
        width: 1.5em;
        height: 1.5em;
        border: none;
        text-indent: 1.5em;
        font-size: 1.5em;
        color: transparent;
        background: #333;
        overflow-y: hidden !important;
    }
    .menu-button::before {
        position: absolute;
        top: 0.35em;
        right: 0.25em;
        bottom: 0.35em;
        left: 0.25em;
        background: linear-gradient(#FFF 20%, transparent 20%, transparent 40%, #FFF 40%, #FFF 60%, transparent 60%, transparent 80%, #FFF 80%);
        content: '';
    }
}

@media (max-height:375px) {
    #section_3 .logo-cria {
        width: 80px;
        height: 80px;
        position: absolute;
        right: 8px;
        top: 85%;
    }
    .camera-button {
        top: 79%;
    }
}

@media (max-height:769px) {
    .screenshot-button,
    .camera-button {
        top: 87%;
    }
    #section_3 .logo-cria {
        top: 90%;
    }
}

@media (min-height:769px) {
    .menu-wrap {
        width: 16%;
    }
}