.drawer {
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    left:0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    display: none;
    z-index: 1000 !important;
}
.drawer-content {
    position: absolute;
    /*width: 95vw;*/
    width: 750px;
    height:calc(100vh - 50px);
    top:50px;
    left:50%;
    padding: 15px;
    transform: translateX(-50%);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.36);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.36);
    box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.36);
    background: #fff;
    z-index: 200 !important;
    /*display: none;*/
    animation: openDrawer .5s ;
}
@media screen and (max-width: 750px) {
    .drawer-content {
        width: 100%;
    }
}
.drawer-html {
    overflow-y: auto;
    height: 100%;
}
.drawer-close{
    position: absolute;
    padding: 0px;
    right: 10px;
    top: 10px;
    cursor: pointer;
    /*z-index:30;*/
}

.drawer-fullscreen {
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    left:0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    display: none;
    z-index: 900 !important;
}
.drawer-content-fullscreen {
    position: absolute;
    width: 95vw;
    height:calc(100vh - 50px);
    top:50px;
    left:50%;
    padding: 15px;
    transform: translateX(-50%);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.36);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.36);
    box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.36);
    background: #fff;
    z-index: 180 !important;
    /*display: none;*/
    animation: openDrawer .5s ;
}
@media screen and (max-width: 750px) {
    .drawer-content-fullscreen {
        width: 100%;
    }
}
.drawer-html-fullscreen {
    overflow-y: auto;
    height: 100%;
}
.drawer-close-fullscreen {
    position: absolute;
    padding: 0px;
    right: 10px;
    top: 10px;
    cursor: pointer;
    /*z-index:30;*/
}

/**
Drawer
 */
@keyframes openDrawer {
    0%   {top:100%;}
    100% {top:50px}
}

.slide-in-tr {
    -webkit-animation: slide-in-tr 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-tr 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
