#selection-area {
    position: absolute;
    left: 50%;
    top: 85px;
    transform: translate(-50%);
    border-radius: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 1;
    padding: 5px;
    /* overflow-y: auto; */
    background-color: #ecebeb;
    height: 80vh;
    width: 90vw;
}


#title {
    padding: 10px 0 10px 0;
    font-size: 23px;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bold;
    color: #513a24;
    text-align: center;
}

#type-selection {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
    width: 500px;
    color: brown;
    font-weight: bold;
}

#lesson-selection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
    max-height: 450px;
    overflow-y: auto;
    padding-top:10px;
}

.cls_label {
    color: #302216;
    ;
    font-size: 18px;
}

.lesson-area {
    width: 125px;
    height:35px;
}

.cls_lessonChkBox,
.cls_lessonChkstorage {
    scale: 1.8;
    margin-right: 10px;
}

#selection-nav {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

#stored-data {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#practice-area {
    display: none;
}

@media screen and (min-device-width: 1200px) {
    #selection-area {
        width: 900px;
        height:initial;
        max-height: 75vh;
    }

}