
.toolbar {
    position: absolute;
    top: 2px;
    left: 0;
    max-width: 100%;
    z-index: 80;
    display: flex;
    flex-direction: column;
 /*   background-color: rgb(60, 60, 124);*/
    box-shadow: 2px 2px 8px rgba(200,200,200,0.8);
}

.toolbar img {
    width: 24px;
    height: 24px;
    margin: 5px 2px;
}

/*.buttonEdgePanel {
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.8) url('../images/menu24bl.png') center no-repeat;
    box-shadow: 2px 2px 8px rgba(200,200,200,0.7);
    z-index: 45;
}

.buttonViewsPanel {
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.8) url('../images/maps24.png') center no-repeat;
    box-shadow: 2px 2px 8px rgba(200,200,200,0.7);
    z-index: 45;
}

.buttonLogin {
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.8) center no-repeat;
    box-shadow: 2px 2px 8px rgba(200,200,200,0.7);
    z-index: 45;
}*/

.menuToolbar {
    position: absolute;
    right: 0;
    left: unset;
    z-index: 45;
}

.buttonClosePanel {
    position: absolute;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.8) url('../images/close32.png') center no-repeat;
    background-size: 24px 24px;
    box-shadow: 2px 2px 8px rgba(200,200,200,0.7);
    z-index: 55;
}



/*
   Boční vysouvací panel
*/
/* Otevřený */
.edgePane {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60%;
    width: 100%;
    /*border: 1px solid #ccc;*/
    border: none;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.75);
    background-color: rgba(250, 250, 250, 0.5);
    z-index: 50;
}

/* Zavřený */
.edgePane.closed {
    /*display: none;*/
    visibility: collapse;
}

/*.edgePane .buttonClosePanel {
    background: url('../images/dbl_arrow_up32.png') center;
}

.closed .buttonClosePanel {
    background: url('../images/dbl_arrow_down32.png') center;
}*/

@media screen and (orientation: portrait) {
    .buttonClosePanel {
        bottom: 10px;
    }

   /* .buttonEdgePanel {
        bottom: 60px;
    }

    .buttonViewsPanel {
        bottom: 10px;
    }

    .buttonLogin {
        bottom: 110px;
    }*/

    .menuToolbar {
        top: unset;
        bottom: 10px;
    }
}

@media screen and (orientation: landscape) {
    .edgePane {
        position: absolute;
        left: inherit;
        right: 0;
        top: 0;
        height: auto;
        width: 450px;
        display: flex;
    }

    .menuToolbar {
        top: 2px;
    }

 /*   .buttonEdgePanel {
        top: 2px;
    }

    .buttonLogin {
        top: 88px;
    }

    .buttonViewsPanel {
        top: 46px;
    }*/

    .buttonClosePanel {
        top: 2px;
    }
}

