/* Overlay style */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index:2;
    background: rgba(160, 56, 145, .65)
}

/* Overlay closing cross */
.overlay .overlay-close {
    background: none repeat scroll 0 0 #EBE9EC;
    border: medium none;
    color: #A03891;
    cursor: pointer;
    font-family: 'roboto_slabregular';
    font-size: 21px;
    height: 38px;
    outline: medium none;
    overflow: hidden;
    position: absolute;
    right: 12px;
    text-indent: 0;
    text-transform: uppercase;
    top: 12px;
    width: 114px;
    z-index: 100;
    /*background: url(cross.png) no-repeat center center;*/
}

/* Menu style */
.overlay .overlay-contents {
    height: 660px;
    background:#FFF none;
    margin: 0 auto;
    position: relative;
    transform: translateY(10%);
    width: 780px;
}

.overall_container {
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
}

.overall_container.overlay-open {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

.overlay-contentscale {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.8s, visibility 0s 0.8s;
    transition: transform 0.8s, visibility 0s 0.8s;
}

.overlay-contentscale.open {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
}

@media screen and (max-height: 30.5em) {
    .overlay nav {
        height: 70%;
        font-size: 34px;
    }
    .overlay ul li {
        min-height: 34px;
    }
}