
/*
menu panel dark violet = 340e53
*/

main.ui_hidden #left_menu {
    opacity: 0!important; pointer-events: none!important;
    transform: translateX(-300px) scale(1.2);
}

#left_menu {
    position: absolute; left: 10px; top: 10px; bottom: 10px; width: 64px;
    pointer-events: all; z-index: 104; opacity: 1;
    transform-origin: right center;
    transition: opacity 0.7s ease-in, transform 0.7s;
}

#left_menu .menu_bar {
    position: absolute; 
    left: 0px; 
    top: 0px; 
    width: 100%; 
    cursor: default;
    /*background-color: #340e53; */
    background-image: linear-gradient(#8800dc, #340e53);
    border-radius: 4px;
    overflow: hidden;
    transition: background-color 0.7s;
    cursor: pointer;
    padding-bottom:20px;
}

/*
#left_menu .menu_bar:focus,
#left_menu .menu_bar:hover {
    background-color: #340e53;
}
*/

.logo-container{
    position:relative;
    left: 80px;
    top: 15px;
    width: 200px;
}

.logo{
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity .25s ease-in-out;
}

.logo.hidden{
    opacity: 0;
}

.title_menu, .title_close{
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;    
    margin-bottom: 6px;
    transition: opacity ease-in 0.8s;
}

.title_close{
    opacity: 0;
}

#left_menu.open .title_close{
    opacity: 1;   
}

#left_menu.open .title_menu{
    opacity: 0;   
}

.menu_icon {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}
.line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

#left_menu .menu_panel {
    cursor: default;
    position: absolute; 
    left: 100%; 
    top: 0; 
    bottom: 0; 
    width: 0px; 
    margin-left: 10px;
    overflow: hidden; opacity: 0;
    background-color: #340e53; 
    transition: width 0.7s, height 0.7s, opacity 0.7s, border-radius 0.7s, top 0.7s, bottom 0.7s;
    pointer-events: all;
    border-radius: 4px;
}

#left_menu.open .menu_panel {
    width: 492px; 
    opacity: 1;
}

#left_menu .menu_panel .menu_stage{
    width: 492px; 
    padding: 32px;
    box-sizing: border-box;  
box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 492px;      
}

#left_menu .menu_stage .title {
    margin-top: 80px;
    font-family: Arial, sans-serif;
    font-size: 32px;
    text-align: left;
    font-weight: bold;
    color: #fff;
    transition: margin-top ease-out 0.9s, background-color 0.5s;    
}

#left_menu.open .menu_stage .title{
    margin-top: 10px;
}

#left_menu .menu_stage p{
    margin-top: 10px;
}

#left_menu.open .menu_stage p{
    margin-top: 0px;
}

.scene{
    position: relative;    
    border-bottom: 1px solid #26083f;
    padding: 0 32px 20px 84px;   
    cursor: pointer; 
    transition: background-color 300ms linear;
}

.scene:hover .scene_title{
    text-decoration: underline;
}

.scene_thumb{
    position: absolute;
    box-sizing: border-box;
    left: 40px;
    top: 50%;    
    width: 68px;
    height: 68px;    
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 130%;
    
    transform-origin: center;
    transform: translate(-50%,-50%);    
    
}

.scene_title{
    margin-top: 80px;
    padding: 20px 0 0 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;    
    transition: margin-top ease-out 0.9s, background-color 0.5s;  
}

#left_menu.open .menu_stage .scene_title{
    margin-top: 10px;
}

.scene_description{
    font-size: 14px;
    line-height: 18px;
    color: #ddd;
    padding: 14px 0 0 0;
    height: 36px;
    /*
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;    
    */
}

.scene_visited_icon{
    position: absolute;
    right: 5px;
    top: 14px;
    width: 28px;
    height: 28px;
    background-image: url(../images/svg/icon_menu_checkpoint.svg);
    background-position: center;
    background-repeat: no-repeat;    
}

.scene.visited .scene_visited_icon{
    background-image: url(../images/svg/icon_menu_checkpoint_checked.svg);    
}

.scene.active{
    background: #23073b;
    border-radius: 10px;
}

#sidebar_menu_items{
    position: absolute;
    box-sizing: border-box;
    left: 0px;
    top: 70px;
    right: 0px;
    bottom: 50px;
    overflow-x: hidden;
    overflow-y: auto;
    transition: top 0.9s;
}

#left_menu.open .menu_stage {
    opacity: 1;
    pointer-events: all;
}

#left_menu .menu_stage .list {
    box-sizing: border-box;
    position: relative;
    min-height: 100%;
    padding: 0 0 0px 0;
    height: 100%;
    overflow: auto;
}

#left_menu .menu_stage .scenes {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    height: auto;
    max-height: 0px;
    padding: 0 35px 0px 20px;
    transition: max-height ease-in-out 0.7s;
}

@media (max-width: 600px) {
    #left_menu {
        left: 0; top: 0; width: 100%; 
        /*height: 64px;*/
        transition: height 0.5s, background-color 0.5s;
    }
    #left_menu.contact_us {
        height: 90px;
        background-color: #2d2d2d;
    }
    #left_menu.open {
        height: 100%;
    }
    #left_menu .menu_bar {
        left: 0; top: 0; right: 0; bottom: 0; height: 45px; border-radius: 0;
    }
    #left_menu .menu_bar .title_menu,
    #left_menu .menu_bar .title_close,
    #left_menu .map_bar {
        opacity: 0!important; pointer-events: none!important;
    }
    #left_menu .menu_bar .logo_white,
    #left_menu .menu_bar .logo_black {
        left: -10px; top: 50%;
        transform: translate(0,-50%);
    }
    #left_menu .menu_bar .icon_menu {
        left: auto; bottom: auto; top: 50%; right: 11px;
        transform: translate(-50%,-50%);
    }
    #left_menu .menu_bar:hover .icon_menu {
        color: #B2B4B2;
    }
    #left_menu.open.map .menu_bar .icon_menu,
    #left_menu.open.map .map_bar .icon_close {
        display: none;
    }
    #left_menu .menu_bar .icon_close {
        left: auto; bottom: auto; top: 50%; right: 14px;
        transform: translate(-50%,-50%) rotate(45deg);
    }
    #left_menu.show .menu_bar .icon_close,
    #left_menu.open.menu .menu_bar .icon_close,
    #left_menu.open.map .menu_bar .icon_close {
        opacity: 1; pointer-events: all;
        transform: translate(-50%,-50%) rotate(0deg);
    }
    #left_menu.open.map .menu_bar .icon_close {
        color: #B2B4B2;
    }
    #left_menu .menu_bar .highlight {
        left: 100%; margin-left: -60px; bottom: 50%;
    }
    #left_menu .menu_bar,
    #left_menu .menu_bar:hover {
        background-color: #2d2d2d;
    }
    #left_menu.open.map .menu_bar,
    #left_menu.open.map .menu_bar:hover {
        background-color: #000000;
    }
    #left_menu .menu_panel {
        left: 0; top: 64px; bottom: 0; width: 100%; height: auto; margin-left: 0px;

    }
    #left_menu.open .menu_panel {
        left: 0; top: 64px; bottom: 0; width: 100%; height: auto; margin-left: 0px;

    }
    #left_menu .menu_panel .menu_stage {
        width: 100%;
        padding: 10px 16px 0 16px;
        overflow-y: auto;
        overflow-x: hidden;
    }
    #left_menu.map .menu_panel .scrollarea-track-v {
        right: -20px;
    }
    #left_menu .menu_panel .menu_stage .topline,
    #left_menu .menu_panel .menu_stage .links {
        position: relative;
        top: auto; bottom: auto; right: auto;
        margin-top: 10px;
        width: 100%;
        text-align: center;

    }
    #left_menu .menu_panel .menu_stage .links a {
        color: #FFCD00;
    }
    #left_menu .menu_panel .map_stage .title,
    #left_menu .menu_stage .title {
        margin-top: 70px;
        font-size: 24px;
        width: 100%;
        text-align: center;
    }
    #left_menu .menu_panel .map_stage .title {
        margin-top: 46px;
    }
    #left_menu .menu_stage .guide_tour_btn {
        border: 1px solid #2D2D2D;
        padding: 10px 50px 0 68px;
    }
    #left_menu .menu_stage .guide_tour_btn .bg_svg {
        display: none;
    }
    #left_menu.open.menu .menu_stage .guide_tour_btn {
        margin-top: 18px;
    }
    #left_menu .menu_panel .map_stage .topline,
    #left_menu .menu_panel .menu_stage .topline,
    #left_menu.open.map .menu_panel .map_stage .topline{
        opacity: 0!important;
    }
    #left_menu .menu_stage .locations,
    #left_menu.open.menu .menu_stage .locations {
        position: relative; top: 0;
        margin: 10px -32px 20px -32px;
    }
    #left_menu .menu_stage .visited_stage {
        position: relative;
        left: auto; top: auto; right: auto; bottom: auto;
    }


    #left_menu .menu_switcher {
        display: block;
        position: absolute; box-sizing: border-box;
        left: 0; top: 0; right: 0; height: 64px;
        background-color: #FFCD00;
        border-radius: 2px;
        z-index: 100;
        transition: background-color 0.5s;
    }
    #left_menu .menu_switcher .locations_btn,
    #left_menu .menu_switcher .map_btn {
        position: absolute; box-sizing: border-box;
        top: 10px; height: 40px; line-height: 36px;
        font-family: Arial, sans-serif; font-size: 14px; text-align: center;
        font-weight: bold;
        cursor: pointer;
        border: 2px solid #2d2d2d;
    }
    #left_menu .menu_switcher .locations_btn {
        left: 16px; right: 50%;
        border-radius: 2px 0 0 2px;
    }
    #left_menu .menu_switcher .map_btn {
        left: 50%; right: 16px;
        border-radius: 0 2px 2px 0;
    }

    #left_menu.menu .menu_switcher .locations_btn {
        color: #FFCD00;  background-color: #2d2d2d;
    }
    #left_menu.menu .menu_switcher .map_btn {
        color: #2d2d2d;
    }

    #left_menu.map .menu_switcher {
        background-color: transparent;
    }
    #left_menu.map .menu_switcher .locations_btn {
        color: #B2B4B2;
    }
    #left_menu.map .menu_switcher .map_btn {
        color: #B2B4B2;  background-color: #2d2d2d;
    }

    #left_menu .menu_panel .map_stage {
        width: 100%;
    }


    #left_menu .menu_stage .scenes {
        padding: 0 20px 0px 10px;
    }
    #left_menu .menu_stage .scene {
        padding: 1px 32px 15px 84px;
    }
    #left_menu .menu_stage .scene text-title {
        padding: 14px 0 0 0;
    }
    #left_menu .menu_stage .scene text-descr {
        font-size: 12px;
        padding: 12px 0 0 0;
        line-height: 16px;
        height: 30px;
    }




    #bottom_menu {
        position: relative;
        margin: 30px -16px 0 -16px;
        background-color: #2d2d2d;
        border-radius: 20px 20px 0 0;
        padding: 30px 10px 120px 10px;
        display: block;
    }


    #bottom_menu .menu {
        display: flex;
        justify-content: space-evenly;
    }

    #bottom_menu .menu .item {
        position: relative; cursor: pointer;
        z-index: 10;
        font-family: arial, sans-serif; font-size: 14px; font-weight: bold; text-align: center;
        color: #B2B4B2;
        transition: color 0.3s;
        text-decoration: none;
    }

    #bottom_menu .menu .item_dot {
        pointer-events: none;
        font-size: 26px; color: rgba(255,205,0,1);
        transition: color 0.3s;
        margin-top: -6px;

    }

    .contact_us_btn {
        display: block;
        box-sizing: border-box;
        position: relative; cursor: pointer;
        z-index: 10;
        font-family: arial, sans-serif; font-size: 14px; font-weight: bold; text-align: center;
        color: #FFCD00;
        line-height: 40px; height: 44px;
        border: 2px solid #FFCD00;
        border-radius: 30px;
        width: 100%;
        margin-top: -104px;
    }

    #left_menu.open.map .menu_panel {
        overflow: hidden;
    }




    #bottom_menu .arrow {
        position: absolute;
        left: 50%; top: 15px; transform: translateX(-50%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    #bottom_menu .social {
        position: relative; opacity: 0;
        display: flex;
        flex-direction: row;
        width: auto; height: auto; max-height: 0px; margin: 0;
        background-color: rgba(255,205,0,0); border-radius: 4px; overflow: hidden; padding-top: 10px;
        transition: opacity 0.3s, max-height 0.3s, margin 0.3s;
        padding: 2px;
    }

    #bottom_menu.social .arrow {
        opacity: 1;
        pointer-events: all;
    }

    #bottom_menu.social .social {
        opacity: 1;
        max-height: 50px;
        margin: 20px 0;
    }

    #bottom_menu.social .socialbtn {
        color: #FFCD00;
    }

    #bottom_menu .social .item:first-child {
        border-radius: 4px 0 0 4px;
    }

    #bottom_menu .social .item:last-child {
        border-radius: 0 4px 4px 0;
    }

    #bottom_menu .social .item {
        display: block; position: relative;
        width: 60px; height: 50px; cursor: pointer;
        background-color: rgba(255,205,0,1);
        transition: background-color 0.3s;
        margin-bottom: 1px;
        box-shadow: 0 0 2px rgba(0,0,0,0.2);

    }

    #bottom_menu .social .item img {
        position: absolute; left: 50%; top: 50%;
        pointer-events: none;
        transform-origin: center; transform: translate(-50%,-50%) scale(1.0);
        transition: transform 0.3s;
    }

    /*MILO*/
    .logo-container{
        left: 0;
        top: 0;
        width: 100%;      
        text-align: center;  
        pointer-events:none;
    }

    #logo-colored{
        display: none;
    }

    #logo-white{
        opacity: 1;
        position: relative;
        width: 135px;
        top: 10px;
        left: -6px;
    }

    #sidebar_menu_items{
        top: 0px;
    }

    #left_menu {
        pointer-events:none !important;   
    }

    .menu_panel{
        pointer-events:none !important;   
    }

    #left_menu.open .menu_panel{
        pointer-events:all !important;   
    }

    .menu_icon{
        pointer-events:all !important;      
    }

    .scene_description{
        font-size:12px;
    }
}