.theme-section-notes{
    overflow: hidden;
}
 .btn-notes{
     background: #ebf3fc;
     display: flex !important;
     align-items: center !important;
     gap: 5px;
}
 .btn-notes .btn-note-icon{
     display: flex;
     align-items: center;
     -webkit-transition: all 0.30s ease-out;
     -moz-transition: all 0.30s ease-out;
     -o-transition: all 0.30s ease-out;
     transition: all 0.30s ease-out;
}
 .btn-notes.active .btn-note-icon{
     transform: rotateY(180deg);
}
 .btn-notes .btn-note-icon img{
     width: 15px;
}
 .btn-notes .btn-note-text{
     color: #03498a;
}
 .theme-notes.theme-notes-active{
     right: 0px;
}
 .theme-notes {
     background: rgb(235 243 252);
     position: absolute;
     right: -430px;
     top: 40px;
     bottom: 0px;
     height: calc(100% - 40px);
     z-index: 2;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     padding: 15px;
     gap: 15px;
     border-radius: 0px 0px 7px 0px;
     -webkit-transition: all 0.30s ease-out;
     -moz-transition: all 0.30s ease-out;
     -o-transition: all 0.30s ease-out;
     transition: all 0.30s ease-out;
     width: 100%;
     max-width: 430px;
}
 .theme-notes .theme-notes-header {
     display: flex;
     justify-content: space-between;
     position: relative;
     overflow: hidden;
     min-height: 32px;
     gap: 15px;
}
 .theme-notes .theme-notes-header .theme-notes-header-left{
     width: 40%;
}
 .theme-notes .theme-notes-header .theme-notes-header-right {
      display: flex;
     justify-content: flex-end;
     width: 60%;
     gap: 5px;
}

 .theme-notes .theme-notes-header .theme-notes-header-right .notes-search-actions{
    position: relative;
    display: flex;
}
 .theme-notes .theme-notes-header .theme-notes-header-right .notes-search-actions .btn-clear{
    height: 32px;
    float: left;
    background: transparent;
     padding: 7px 9px;
}
 .theme-notes .theme-notes-header .theme-notes-header-right .notes-search-actions .btn-clear:hover{
     background: var(--border-light-color);
}
 .theme-notes .theme-notes-header .theme-notes-header-right .notes-search-actions .btn-clear img{
    width: 12px;
    height: 12px;
}
 .theme-notes .theme-notes-header .theme-notes-header-left .btn {
     display: flex;
     height: 32px;
     width: 100%;
     text-align: center;
     align-items: center;
     justify-content: center;
     gap: 5px;
}
 .theme-notes .theme-notes-header .theme-notes-header-left .teacherbot-icon {
     width: 12px;
     height: 12px;
}
 .theme-notes .theme-notes-header .notes-search {
     display: flex;
     align-items: center;
     width: 100%;
     float: left;
     position: relative;
     overflow: hidden;
}
 .theme-notes .theme-notes-header .notes-search .form-icon {
     height: 32px;
     min-width: 32px;
     border: 1px solid #818181;
     background: rgba(0, 0, 0, 0.05);
     position: absolute;
     right: 0px;
     top: 0px;
     z-index: 1;
     border-radius: 0px 6px 6px 0px;
     border-left: none !important;
}
 .theme-notes .theme-notes-header .notes-search .form-icon img {
     position: relative;
     width: 30px;
     height: 30px;
     padding: 8px;
     float: left;
}
 .theme-notes .theme-notes-header .notes-search .form-search {
     background: transparent;
     border: 1px solid #03498a;
     border-radius: 6px;
     width: 100%;
     float: left;
     position: relative;
     height: 32px;
     padding: 0px 36px 0px 10px;
     font-family: "Poppins", sans-serif;
     font-size: 13px;
     min-width: 140px;
     color: #03498a;
}
 .theme-notes .theme-notes-body {
     padding: 0px;
     height: 100%;
     overflow-y: hidden;
}
 .theme-notes .theme-notes-body .notes-list {
     display: flex;
     flex-direction: column;
     gap: 15px;
     padding: 0px;
     height: 100%;
     overflow-y: auto;
}
 .theme-notes .theme-notes-body .notes-list .single-note {
     background-color: #fff;
     border-radius: 8px;
     border: 1px solid #888888;
     padding: 10px 10px 10px 25px;
     display: flex;
     flex-direction: column;
     position: relative;
}
 .theme-notes .theme-notes-body .notes-list .single-note:before{
     content:"";
     width: 10px;
     position: absolute;
     top: -1px;
     height: calc(100% + 2px);
     background: #888888;
     left: -1px;
     border-radius: 8px 0px 0px 8px;
}
 .theme-notes .theme-notes-body .notes-list .single-note .single-note-header {
     display: flex;
     justify-content: space-between;
     margin-bottom: 10px;
}
 .theme-notes .theme-notes-body .notes-list .single-note .single-note-header .note-header-left .note-status {
     font-size: 11px;
     color: #c3c3c3;
}
 .theme-notes .theme-notes-body .notes-list .single-note .single-note-header .note-header-right .note-date {
     font-size: 11px;
     color: #c3c3c3;
}
 .theme-notes .theme-notes-body .notes-list .single-note .single-note-body {
     margin-bottom: 10px;
}
 .theme-notes .theme-notes-body .notes-list .single-note .single-note-body p{
     color: #333333;
     line-height: 1.5;
     margin: 0px;
     font-size: 12px;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-textarea {
     width: 100%;
     height: 60px;
     padding: 0px;
     border-radius: 4px;
     border: none;
     resize: none;
     font-family: "Poppins", sans-serif;
     overflow-y: auto;
     font-size: 13px;
     line-height: 1.5;
     outline: none !important;
}
 .theme-notes .theme-notes-body .notes-list .single-note .single-note-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 15px;
     position: relative;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions {
     display: flex;
     gap: 15px;
     position: relative;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action {
     display: flex;
     align-items: center;
     text-decoration: none;
     color: #888888;
     gap: 5px;
     font-size: 12px;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action .note-btn-icon {
     width: 30px;
     height: 30px;
     position: relative;
     border: 1px solid #888888;
     border-radius: 180px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action .note-btn-icon img {
     width: 30px;
     height: 30px;
     position: relative;
     padding: 8px;
     filter: grayscale(1);
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action .note-btn-text{
     color: #888888;
     white-space: nowrap;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action:hover .note-btn-icon, .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action.active .note-btn-icon {
     border-color: #03498a;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action:hover .note-btn-icon img, .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action.active .note-btn-icon img {
     filter: none;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action:hover .note-btn-text, .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action.active .note-btn-text{
     color: #03498a;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action.active:hover .note-btn-icon {
     border-color: #023768;
}
 .theme-notes .theme-notes-body .notes-list .single-note .note-actions .single-note-action.active:hover .note-btn-text{
     color: #023768;
}
 .theme-notes .theme-notes-body .notes-list .single-note.everyone {
     border:1px solid #C4DBF7;
}
 .theme-notes .theme-notes-body .notes-list .single-note.everyone:before{
     background: #03498a;
}
 