::selection { 
    background: rgb(144, 202, 249); 
    color: rgb(255, 255, 255);  
}


.icasei-root-header {
    position: sticky;
    top: 0;
    z-index: 3;
}

.icasei-root-drawer {
    z-index: 2;
    position: fixed;
    left: 0;
    height: calc(100% - 64px);
    width: 290px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12), 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
    transform: translateX(-100%) translateY(0) rotate(0);
}

.icasei-root-drawer-show {
    transform: translateX(0) translateY(0) rotate(0);
    width: 290px;
}

.icasei-root-drawer-show + .icasei-root-content {
    margin-left: 290px;
}

.icasei-root-drawer-hide + .icasei-root-content {
    margin-left: 0px;
}

@media (max-width: 1200px) {
    .icasei-root-drawer-show + .icasei-root-content {
        margin-left: 0px;
    }

    .icasei-root-drawer-overlay{
        width: 100%;
        background-color: rgba(0, 0, 0, 0.72);
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        transition: opacity 400ms;
        transform: translateX(-100%);
    }

    .icasei-root-drawer {
        position: fixed;
        z-index: 4;
        top: 0;
        height: 100%;
        margin-top: 0;
    }

    .icasei-root-drawer-overlay-show {
        transform: translateX(0);
        opacity: 0.7;
        z-index: 3;
    }
}


