/* Apply setting: drop_shadow = 0 */
.reflexmenu {
    top: 0;
    left: 0;
    height: 100vh;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    
    /**Custom CSS**/
    }

.reflexmenu > .close {
    color: #FFF;
    position: absolute;
    top: 10px;
    right: -10vw;
    padding: 5px 10px;
    border-radius: 2px;
    background-color: #101010;
    background-image: url(images/orb.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    cursor: pointer;
    /*
    -webkit-animation: reflexSwing 5s infinite; /* Chrome, Safari, Opera */ 
    /*animation: reflexSwing 5s infinite;*/
}
.divi-reflexmenu {
    overflow: hidden;
    position: absolute;
    transform: rotateY(-15deg);
    backface-visibility: hidden;
    transition: all 400ms linear;
        
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -webkit-transform: rotateY(-15deg);
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 400ms linear;
}

.reflexmenu .reflexmenu-menu-content {
    vertical-align: middle;
    box-sizing: border-box;
    transition-duration: 0ms;
    transform: translate(0, -50%);
    transform-style: preserve-3d;
	-webkit-transform: translate(0, -50%);
	-webkit-transform-style: preserve-3d;
    transform: translate(0px, 0px) translateZ(0px);
    padding: 0 0 10px 10px;
    direction: rtl;
    text-align: left;
    transition-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1);
    margin-left: 15%;
    min-width: 200px;
    max-height: 70vh;
    overflow: auto;
}

.reflexmenu .reflexmenu-sub-menu {
    padding: 5px;
    border-radius: 2px;
    background-color: #101010;
    background-image: url(images/orb.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    /*border: 1px solid #FFF;*/
    display: none;
}

.reflexmenu .reflexmenu-sub-menu a {
    color: #FFF;
    border-radius: 2px;
    padding: 5px 10px;
    display: block;
    /*ANIMATION*/
    transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
}


.reflexmenu .reflexmenu-sub-menu a:hover {
    background-color: #000000;
}

.reflexmenu .reflexmenu-menu-content li ul {
    display: none;
    margin-top: 10px;
    margin-left: 10px;
}

.reflexmenu .reflexmenu-menu-content li.menu-item-has-children a {
    position: relative;
}

.reflexmenu .reflexmenu-menu-content li.menu-item-has-children > a:after {
    position: absolute;
    right: 10px;
    content: ' ';
    float: right;
    top: calc(50% - 5px);
    margin-left: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #FFF;
    line-height: 0px;
    _border-color: #000000 #000000 #000000 #FFF;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

.reflexmenu .reflexmenu-menu-content.large {
    top: 0;
    height: 100vh;
}

.reflexmenu .reflexmenu-menu-content::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
}

.reflexmenu .reflexmenu-menu-content::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 0px;
}
.reflexmenu .reflexmenu-menu-content::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(0,0,0,0.4);
    box-shadow: 0px 1px 1px #000;
}

.reflexmenu .reflexmenu-menu-content li {
    list-style: none;
    margin-bottom: 10px;
    direction: ltr !important;
}

.reflexmenu .reflexmenu-menu-content li:last-of-type {
    margin-bottom: 0;
}

.reflexmenu .reflexmenu-menu-content li a {
    color: #FFF;
    /*border: 1px solid #FFF;*/
    padding: 5px 10px;
    display: block;
    background-color: #101010;
    background-image: url(images/orb.png);
    background-position: 120% center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 2px;
    
    /*ANIMATION*/
    transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
}

.reflexmenu .reflexmenu-menu-content li a:hover {
    background-color: #000000;
}

/**/
.reflexmenu-noscroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    perspective: 150px;
    background: #EDEDED;
    -webkit-perspective: 150px;
}

@-webkit-keyframes reflexSwing {
    0%   {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
    25%  {
        transform: rotateY(-10deg);
        -webkit-transform: rotateY(-10deg);
    }
    50%   {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
    75% {
        transform: rotateY(10deg);
        -webkit-transform: rotateY(10deg);
    }
    100%   {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
}

    0%   {
        transform: rotate(0deg);
        -webkit-transform: rotateY(0deg);
    }
    25%  {
        transform: rotateY(-10deg);
        -webkit-transform: rotateY(-10deg);
    }
    50%   {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
    75% {
        transform: rotateY(10deg);
        -webkit-transform: rotateY(10deg);
    }
    100%   {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
}