/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2015.08.29., 19:32:02
    Author     : PÃ©ter
*/

.global-container {
    width: 100%;
    overflow: hidden;
    /* min-height: 100%; */
    position: relative;
}

.global-container .menu-layer {
    display: none;
}
.global-container .site-container {
    left: 0;
    /* min-height: 100%; */
    position: relative;
    z-index: 1;
    /* padding: 0 10px; */
}




a, a:focus {
    outline: 0;
}
.global-container .menu-layer {
    display: block;
    min-height: 500px;
    position: fixed;
    left: -70%;
    width: 70%;
    z-index: 2;
    /* box-shadow: -4px 0px 3px -1px rgba(0, 0, 0, 0.2) inset; */
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    height: 100%;
    background-color: #FFCD00;
    font-size: 40rem;
    border-right: solid 1px #D2D2D2;
}
body.menu-opened .global-container .menu-layer {
    left: 0%;
    bottom: 0;
}

.global-container .site-container {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;

}
body.menu-opened .global-container .site-container {
    left: 70%;
}


.menu-layer .title {
    background-color: #00A0E4;
    position: relative;
    /* height: 62rem; */
    box-shadow: 0px 1rem 3rem black;
}

.menu-layer a.menu-button {
    left: 10px;
    right: initial;
    background-image: url(../img/menu-container-arrow.svg);
    width: auto;
    text-indent: initial;
    background-size: 14px;
    background-position: 12rem center;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-family: Verdana;
    padding: 23rem;
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    font-size: 12px;
    background-repeat: no-repeat;
    /* position: absolute; */
    padding-left: 40rem;
    font-weight: bold;
    display: block;
}

.menu-layer nav.mainmenu {
    position: absolute;
    left: 0;
    top: 62rem;
    bottom: 0;
    right: 0;
    overflow: auto;
}

.menu-layer nav.mainmenu ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

.menu-layer nav.mainmenu > ul > li {
    display: block;
}

.menu-layer nav.mainmenu > ul > li ul {
    background-color: #717171;
}

.menu-layer nav.mainmenu a {
    color: #000;
    text-align: left;
    font-size: 12px;
    padding: 20px;
    height: initial;
    border-bottom: solid 1px #CAA303;
    position: relative;
    display: block;
    text-decoration: none;
    font-weight: bold;
}

.menu-layer nav.mainmenu li li a {
    padding-left: 35px;
}

.menu-layer nav.mainmenu li.has-children > a:after {
    background-image: url(../img/arrow486.svg);
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 12px;
    top: 12px;
    transform: rotateZ(-90deg);
    transition: all 300ms ease;
}

.menu-layer nav.mainmenu li.has-children > ul {
    display: none;
}

.menu-layer nav.mainmenu li.has-children.opened > ul {
    display: block;
}