

        .animated {
            -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
        }

        #sidebar-wrapper {
            min-height: 100vh;
            transition: margin 0.25s ease-out;
            position: absolute;
            width: 250px;
            background-color: #212529;
            top: 0;
            left: -250px;
            z-index: 999;

            -webkit-transition: all .5s ease-out;
            -moz-transition: all .5s ease-out;
            -o-transition: all .5s ease-out;
            transition: all .5s ease-out;

        }

        #content-web {
            position: relative;
            left: 0;
            top: 0;
            overflow: auto;

            -webkit-transition: all .5s ease-out;
            -moz-transition: all .5s ease-out;
            -o-transition: all .5s ease-out;
            transition: all .5s ease-out;
        }

        #buttonOpenMenu {
            position: absolute;
            left: 8px;
            top: 8px;
            z-index: 25;
        }

        body,
        html {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            /*overflow: hidden;*/
        }