.notepad_cont{
	width: 10px;
    height: 10px;
    position: relative;
    cursor: default;
    border: 1px solid #737373;
    /* border-right: 1px solid #cdcdcd; */
    border-radius: 50%;
}
.notepad_cont_active{
    z-index: 1;
}
.notepad_cont:hover .notepad_indicator{
    width: 100%;
    height: 100%;
}

.notepad_title{
    text-transform: uppercase;
}
.notepad_indicator{
    width: 80%;
    height: 80%;
    background-color: #4286a7;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate3D(50%, -50%, 0);
    transition: .3s;
    border-radius: 50%;
    cursor: pointer;
}
.notepad_indicator_empty{
    background-color: white;
    width: 80%;
    height: 80%;
}
.notepad_indicator_allCompleted{
    background-color: #a5a5a5;
    width: 80%;
    height: 80%;
}
.notepad_indicator_pinned{
    width: 200%;
    height: 200%;
    border: 1px solid #737373;
}
.notepad_cont:hover .notepad_indicator_pinned{
    width: 200%;
    height: 200%;
}
.notepad_notes_cont{
	width: max-content;
    min-width: 250px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #f2f2f2;
    border: 1px solid #dddddd;
    position: absolute;
    top: 0;
    /*transform: translateY(100%);*/
    right: 0;
    font-size: 0.8rem;
    text-transform: none;
    padding: 8px;
    padding-right: 18px;
    font-weight: 400;
    color: black;
    display: none;
    border-top-right-radius: 10px;
}
.notepad_notes_container{
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
}
.notepad_note_cont{
    flex-direction: column;
    display: flex;
    padding: 6px;
    background: #f5f5f5;
    border: 1px solid #bdbdbd;
    gap: 2px;
}
.notepad_note_cont_completed{
    opacity: .5;
}
.notepad_note_content{
    
}
.notepad_note_content_timeCreated{
    font-size: .6rem;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 2px;
    display: flex;
    justify-content: space-between;
}
.notepad_input_cont{
    display: none;
}
.notepad_controll{
    font-weight: 600;
    cursor: pointer;
}
.notepad_controll:hover{
    text-decoration: underline;
}
.notepad_note_controlls{
    display: flex;
    gap: 4px;
}