/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Modal Sticky View
# Modal Content
# Add Animation
# The Close Button
# Extra Theme Support
# The Modal Form Style
# Tab Content
# LD profile
# Single Note
# Responsive
# Table Style
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Modal Sticky View
--------------------------------------------------------------*/

#lms_notes_modal.modal.note-sticky-view {
    margin: 0;
    padding: 15px;
    background-color: transparent;
    display: none;
    height: auto;
    left: auto;
    right: 0;
    overflow: auto;
    position: fixed;
    top: auto;
    bottom: 0;
    width: auto;
    z-index: 999999;
    border-radius: 6px;
}

#lms_notes_modal.modal.note-sticky-view.note-position-left {
    left: 0;
    right: auto;
}

#lms_notes_modal.modal.note-sticky-view .lms_notes_modal_close {
    /* right: 5px;
    top: 5px; */
}

#lms_notes_modal.note-sticky-view .modal-content {
    width: 100%;
}

.note-sticky-view #lms_notes_modal_form {
    cursor: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 20px;
}

/* The Modal (background) */

#lms_notes_modal.modal,
.lcn-panel1 .modal,
.lms-notes-listsing .modal {
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    height: 100%;
    /* Full height */
    left: 0;
    overflow: auto;
    padding-top: 100px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

#lms_notes_modal.modal .lms-container,
.lcn-panel1 .modal .lms-container,
.lms-notes-listsing .modal .lms-container {
    width: 100%;
    padding: 0;
}

/*--------------------------------------------------------------
# Modal Content
--------------------------------------------------------------*/
#lms_notes_modal .modal-content,
.lcn-panel1 .modal .modal-content,
.lms-notes-listsing .modal .modal-content {
    background-color: #fff;
    margin: auto;
    position: relative;
    padding: 0;
    border: none;
    width: 25%;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 6px !important;
}

/*--------------------------------------------------------------
# Add Animation
--------------------------------------------------------------*/
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

/*--------------------------------------------------------------
# The Close Button
--------------------------------------------------------------*/
.lms_notes_modal_close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lms-notes-listsing .lms_notes_modal_close {
    right: 10px;
}

.lms-notes-listsing .lms_notes_modal_close img,
#lms_notes_modal #lms_notes_modal_form .lms_notes_modal_close img{
    max-width: 18px;
}

.lms_notes_modal_close:hover,
.lms_notes_modal_close:focus {
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

/*--------------------------------------------------------------
# The Modal Form Style
--------------------------------------------------------------*/
#lms_notes_modal_form input[type="text"],
#lms_notes_modal_form input[type="email"],
#lms_notes_modal_form input[type="tel"],
#lms_notes_modal_form input[type="url"],
#lms_notes_modal_form textarea,
#lms_notes_modal_form button[type="submit"],
.lms_notes_modal_form input[type="text"],
.lms_notes_modal_form input[type="email"],
.lms_notes_modal_form input[type="tel"],
.lms_notes_modal_form input[type="url"],
.lms_notes_modal_form textarea,
.lms_notes_modal_form button[type="submit"] {
    font-family:inherit ;
}

#lms_notes_modal_form,
.lms_notes_modal_form {
    /* background: #ffffff; */
    box-shadow: 0 0px 20px 6px rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    padding: 20px;
    padding-top: 0px;
    cursor: move;
    overflow: hidden;
    border-radius: 6px !important;
}

#lms_notes_modal_form h3.lms-notes-model-header,
.lms_notes_modal_form h3.lms-notes-model-header {
    display: block;
    margin: 0 -20px !important;
    margin-bottom: 15px !important;
    padding: 15px 20px !important;
    text-align: left;
    font-size: 20px;
    background: #242526;
    color: #fff !important;
    text-transform: capitalize;
    border-radius: 6px 6px 0 0 !important;
}

#lms_notes_modal_form h4,
.lms_notes_modal_form h4 {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin: 5px 0 15px;
}

#lms_notes_modal fieldset,
.lms_notes_modal_form fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

#lms_notes_modal fieldset.lms_all-notes_link {
    margin: -20px !important;
    margin-top: 20px !important;
    background: #111;
    display: flex;
    height: 50px;
    overflow: hidden;
    width: calc(100% + 40px) !important;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}
#lms_notes_modal fieldset.lms_all-notes_link a.learndash-notes-link {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

#lms_notes_modal fieldset.lms_all-notes_link a.learndash-notes-link i {
    margin-right: 6px;
}

#lms_notes_modal_form input[type="text"],
#lms_notes_modal_form input[type="email"],
#lms_notes_modal_form input[type="tel"],
#lms_notes_modal_form input[type="url"],
#lms_notes_modal_form textarea,
.lms_notes_modal_form input[type="text"],
.lms_notes_modal_form input[type="email"],
.lms_notes_modal_form input[type="tel"],
.lms_notes_modal_form input[type="url"],
.lms_notes_modal_form textarea {
    background: #FFF;
    border: 1px solid #e2e2e2;
    margin: 0 0 5px;
    padding: 6px 12px;
    width: 100%;
    border-radius: 0;
    font-size: 14px;
}

#lms_notes_modal_form input[type="text"]:hover,
#lms_notes_modal_form input[type="email"]:hover,
#lms_notes_modal_form input[type="tel"]:hover,
#lms_notes_modal_form input[type="url"]:hover,
#lms_notes_modal_form textarea:hover,
.lms_notes_modal_form input[type="text"]:hover,
.lms_notes_modal_form input[type="email"]:hover,
.lms_notes_modal_form input[type="tel"]:hover,
.lms_notes_modal_form input[type="url"]:hover,
.lms_notes_modal_form textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
    transition: border-color 0.3s ease-in-out;
}

#lms_notes_modal_form textarea,
.lms_notes_modal_form textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

.lcn-title-validate-msg {
    display: none;
}

#lms_notes_modal fieldset.lnotes_title,
.lms_notes_modal_form fieldset.lnotes_title {
    margin: 0px;
    height: 65px;
    width: 100%;
    margin-bottom: 0px;
    padding: 0;
}

#lms_notes_modal fieldset.lnotes_title input#lms_note_title,
.lms_notes_modal_form fieldset.lnotes_title input,
.lms_notes_modal_form fieldset.lnotes_title input:hover {
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px 15px;
    height: auto;
}

.lcn-note-validate-msg {
    display: none;
}

#lms_notes_modal .mce-container iframe,
.lms_notes_modal_form .mce-container iframe {
    height: 200px!important;
}

#wp-wbln_note_text-wrap {
    border-right: 1px solid #dcdcde;
}

#lms_notes_modal fieldset.submit-update-buttons,
.lms_notes_modal_form fieldset.submit-update-buttons {
    margin: -20px;
    margin-top: 20px;
    background: #F5F5F9;
    display: flex;
    height: 50px;
    overflow: hidden;
    width: calc(100% + 40px);
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
}

#lms_notes_modal_form #lms_notes_save_note,
#lms_notes_modal_form .lms_notes_save_note,
.lms_notes_modal_form #lms_notes_save_note,
.lms_notes_modal_form .lms_notes_save_note,
.buddypress .lms-notes-listsing #lms_notes_save_note,
.buddypress .lms-notes-listsing .lms_notes_save_note {
    cursor: pointer;
    font-size: 16px !important;
    padding: 20px !important;
    font-weight: 600;
    background-color: #0182dd;
    color: #fff !important;
    line-height: 1.1 !important;
    border: none;
    transition: all 0.5s;
    border-radius: 0 !important;
    width: 100%;
}

#lms_notes_save_note.lms_notes_save_note {
    padding: 10px 10px !important;
}

#lms_notes_save_note:hover,
.lms_notes_save_note:hover {
    background: #242526;
}

span.ld-notes-print.link-wrapper a:last-child {
    display: none;
}

span.ld-notes-print.link-wrapper a i {
    font-weight: normal !important;
    font-size: 20px;
}

.ld-notes-print.link-wrapper a {
    position: relative;
    padding: 12px 20px;
    background: #f1f1f1;
    width: 50%;
    transition: all 0.5s;
    border-right: 1px solid #ccc;
}

/*.ld-notes-print.link-wrapper a:nth-child(2n) {
    border-bottom-right-radius: 6px;
}
*/
span.ld-notes-print.link-wrapper a:hover {
    color: #0182dd !important;
}

span.ld-notes-print.link-wrapper a:last-child {
    display: none;
}

span.ld-notes-print.link-wrapper {
    width: 50%;
    display: flex;
    background: #f1f1f1;
    justify-content: center;
/*    border-bottom-right-radius: 6px;*/
}

.ld-notes-print.link-wrapper a img{
    max-width: 26px;
}

#lms_notes_modal_form button[type="submit"]:hover,
.lms_notes_modal_form button[type="submit"]:hover {
    background: #43A047;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#lms_notes_modal_form button[type="submit"]:active,
.lms_notes_modal_form button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
    text-align: center;
}

#lms_notes_modal_form input:focus,
#lms_notes_modal_form textarea:focus,
.lms_notes_modal_form input:focus,
.lms_notes_modal_form textarea:focus {
    border: 1px solid #aaa;
    outline: 0;
}

::-webkit-input-placeholder {
    color: #888;
}

:-moz-placeholder {
    color: #888;
}

::-moz-placeholder {
    color: #888;
}

:-ms-input-placeholder {
    color: #888;
}

.note-corner-bottom {
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    font-size: 35px;
    text-align: center;
    z-index: 9999;
    /* background: #0182dd; */
    color: #fff;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.note-corner-bottom img {
    max-width: 32px;
}

span.note-corner-bottom.note-position-left {
    left: 20px;
    right: auto;
}

.note-corner-bottom:after {
    content: '';
    top: 0;
    left: 0;
    padding: 0;
    opacity: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    position: absolute;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.note-corner-bottom:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms infinite;
    -moz-animation: sonarEffect 1.3s ease-out 75ms infinite;
    animation: sonarEffect 1.3s ease-out 75ms infinite;
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
        -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
        -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
        -webkit-transform: scale(1.18);
        opacity: 0;
    }
}

@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
        -moz-transform: scale(1.18);
        opacity: 0;
    }
}

@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
        -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
        -ms-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
        -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 3px 4px rgba(0, 0, 0, 0.7), 0 0 0 8px rgba(0, 0, 0, 0.7);
        transform: scale(1.18);
        opacity: 0;
    }
}

#learndash-show-notes.note-disable-animation span.note-corner-bottom:after{
    animation: none;
}


.edit-del-icon {
    padding: 3px;
}

.clear {
    clear: both;
}

.learndash-save-edit-note {
    color: #00AF33;
    display: none;
    margin: 3px;
    padding: 2px 4px;
    text-decoration: none;
    border: 2px solid;
    border-radius: 6px;
}

.learndash-cancel-edit-note {
    color: #f14e56;
    display: none;
    margin: 3px;
    padding: 2px 4px;
    text-decoration: none;
    border: 2px solid;
    border-radius: 6px;
}

.lcn-editable {
    background: #f2f2f2;
    border-color: #bd0f18;
    box-shadow: inset 0 0 2px #555;
    padding: 2px;
    font-size: 20px;
    font-weight: bold;
    color: #6e6e6e;
}

.ln_para_note {
    display: none;
}

.lms_show_less_note {
    display: none;
}

/*--------------------------------------------------------------
# Tab Content
--------------------------------------------------------------*/
.buddypress .buddypress-wrap button.user_notes_div,
button.user_notes_div {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    text-align: left;
    border: 2px solid #e2e7ed;
    border-radius: 6px;
    margin-bottom: 12px;
    background: #fff;
    color: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

button.user_notes_div.active,
button.user_notes_div:focus,
button.user_notes_div:hover,
.buddypress .buddypress-wrap button.user_notes_div button.user_notes_div.active,
.buddypress .buddypress-wrap button.user_notes_div button.user_notes_div:focus,
.buddypress .buddypress-wrap button.user_notes_div button.user_notes_div:hover {
    background: #fff !important;
    color: inherit !important;
    border: 2px solid #e2e7ed !important;
}

.buddypress .buddypress-wrap button.user_notes_div.active,
button.user_notes_div.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.buddypress .buddypress-wrap button.user_notes_div button.user_notes_div:after,
button.user_notes_div:after {
    content: '\002B';
    font-weight: bold;
    margin-left: 5px;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 24px;
    flex-basis: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    background-color: #0182dd;
    color: #fff;
    font-size: 18px;
}

.buddypress .buddypress-wrap button.user_notes_div,
button.user_notes_div.active:after {
    content: "\2212";
}

.lcn-panel1 {
    display: none;
}

.lcn-panel1 {
    background-color: rgba(250, 252, 255, 0.5);
    padding: 15px 14px;
    width: 100%;
    border: 2px solid #e2e7ed;
    margin-top: -15px;
    margin-bottom: 15px;
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.lcn-panel1 table {
    margin-bottom: 0;
}

.lcn-panel1 thead.icn-header {
    background: #fff;
}

.lcn-panel1 table th:first-child,
.lcn-panel1 table td:first-child,
.lcn-panel1 table th:last-child,
.lcn-panel1 table td:last-child {
    padding: 10px;
}

.lcn-panel1 table th:first-child,
.lcn-panel1 table td:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.lcn-panel1 table th:last-child,
.lcn-panel1 table td:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.lcn-panel1 tbody.icn-body tr:nth-child(even) {
    background: #fdfdfd;
}

.lcn-panel1 .note-item p {
    margin-bottom: 0;
}

.no-item-found {
    display: block;
    margin: auto;
}

.note-edit-msg {
    color: green;
    display: none;
}

.note-del-msg {
    color: red;
    display: none;
}

.note-item .wp-editor-wrap {
    display: none;
}

#wp-wbln_note_text-editor-container.active {
    border: 1px solid red;
}

#lms_note_title.active {
    border: 1px solid red !important;
}

.note-item span {
    float: left;
    display: inline-block;
}

a.learndash-view-note,
a.learndash-wb-delete-note,
a.learndash-wb-edit-note {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border:1px solid #e2e7ed;
    margin: 5px 5px 0 0;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    background: #f8f8fb;
    transition: all 0.3s;
}

.icn-action a.learndash-view-note:hover img,
.icn-action a.learndash-wb-delete-note:hover img,
.icn-action a.learndash-wb-edit-note:hover img{
  filter: brightness(0) invert(1);
}

a.learndash-view-note:hover {
    border-color: #0182dd;
    background: #0182dd;
}

a.learndash-wb-edit-note:hover {
    border-color: #008000;
    background: #008000;
}

a.learndash-wb-delete-note:hover {
    border-color: #FF0000;
    background: #FF0000;
}

.ln_para_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.note-item i.fa {
    font-size: 16px;
    color: #6e6e6e;
}

.lcn_modfied_time {
    margin-bottom: 5px;
}

div.lcn-panel1 div.note-item:nth-child(odd) {
    background: #fff;
}


a.learndash-view-note img,
a.learndash-wb-delete-note img,
a.learndash-wb-edit-note img{
    max-width:18px;
    max-height: 18px;
}



/*--------------------------------------------------------------
# LD profile
--------------------------------------------------------------*/
.lms_notes_list h3 {
    font-size: 24px;
    margin: .5em 0;
    margin-top: 50px;
}

/*--------------------------------------------------------------
# Single Note
--------------------------------------------------------------*/
.entry-meta.lcn-meta ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.entry-meta.lcn-meta ul i {
    margin-right: 10px;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    vertical-align: top;
    float: none;
}

.entry-meta.lcn-meta ul li {
    display: inline-block;
    margin: 0 5px 10px 0;
}

.single-lcn_notes .ld-notes-print.link-wrapper {
    margin: 20px 0;
    display: block;
    background: transparent;
}

.single-lcn_notes .ld-notes-print.link-wrapper a {
    display: inline;
    margin-right: 10px;
    margin-left: 0;
    border: 0;
    text-decoration: none;
}

@media only screen and (max-width: 479px) {
    #wp-wbln_note_text-wrap .mce-toolbar .mce-btn button {
        padding: 3px 2px !important;
    }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
    #lms_notes_modal .modal-content,
    .lcn-panel1 .modal .modal-content,
    .lms-notes-listsing .modal .modal-content {
        width: 50%;
    }
}

@media only screen and (max-width: 768px) {
    #lms_notes_modal .modal-content,
    .lcn-panel1 .modal .modal-content,
    .lms-notes-listsing .modal .modal-content {
        width: 90%;
    }
    #lms_notes_modal.modal,
    .lcn-panel1 .modal,
    .lms-notes-listsing .modal {
        padding-top: 70px;
    }
}

@media (max-width: 767px) {
    .lcn-panel1 .tabcontent {
        animation: fadeEffect 1s;
        background-color: #eee;
        display: none;
        padding: 12px 12px;
        float: left;
        width: 92%;
        height: auto;
    }
    .lcn-panel1 table th:first-child,
    .lcn-panel1 table td:first-child,
    .lcn-panel1 table th:last-child,
    .lcn-panel1 table td:last-child {
        border: 0;
    }
}


/*----------------Responsive Table-------------*/

@media only screen and (max-width: 767px) {
    .lcn-panel1 table,
    .lcn-panel1 thead,
    .lcn-panel1 tbody,
    .lcn-panel1 th,
    .lcn-panel1 td,
    .lcn-panel1 tr {
        display: block;
    }
    .lcn-panel1 thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .lcn-panel1 tr {
        border: 1px solid #e3e3e3;
    }
    .lcn-panel1 td {
        border: none;
        position: relative;
        margin-left: 150px;
    }
    .lcn-panel1 td:before {
        position: absolute;
        top: 10px;
        left: 6px;
        padding-right: 40px;
        white-space: nowrap;
        margin-left: -150px;
    }
    .lcn-panel1 td:nth-of-type(1):before {
        content: "Title:";
    }
    .lcn-panel1 td:nth-of-type(2):before {
        content: "Associated With:";
    }
    .lcn-panel1 td:nth-of-type(3):before {
        content: "Last Modified:";
    }
    #lms-notes-filter {
        text-align: center !important;
        display: block !important;
        background-color: #fff;
    }
    .lms-notes-filter {
        margin: 3px 0;
    }
    thead.icn-header {
        display: none;
    }
    .icn-items.note-item,
    .icn-items.note-item td {
        display: block;
        position: relative;
    }
    .icn-items.note-item td:before {
        position: absolute;
        left: 10px;
        top: 40%;
        content: attr(data-attr);
        margin-top: -10px;
        font-weight: 600;
    }
    .icn-items.note-item td {
        padding-left: 150px !important;
        border-bottom: 0;
    }
    .lms-notes-listsing {
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        border: none !important;
    }
    .icn-body tr.icn-items.note-item {
        display: block;
        margin: 0 0 10px;
        border-radius: 5px;
        border: 1px solid #ddd;
        background-color: #fff;
    }
    .icn-date,
    .icn-title {
        border: 0;
    }
}

/*--------------------------------------------------------------
# Table Style
--------------------------------------------------------------*/
#ld-dashboard-courses-id,
.lms-notes-filter {
    display: inline-block !important;
    line-height: 1.3;
    padding: .6em 1.8em .5em .8em;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: .4em;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-color: #f2f1f1;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    font-size: 15px;
    height: 45px;
    width: 49.5%;
}

#ld-dashboard-courses-id::-ms-expand,
.ld-dashboard-student::-ms-expand,
.lms-notes-filter::-ms-expand {
    display: none;
}

#ld-dashboard-courses-id:hover,
.ld-dashboard-student:hover,
.lms-notes-filter:hover {
    border-color: #888;
}

#ld-dashboard-courses-id:focus,
.ld-dashboard-student:focus {
    border-color: #aaa;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
}

#ld-dashboard-courses-id option,
.ld-dashboard-student option,
.lms-notes-filter option {
    font-weight: normal;
}

.lms-notes-listsing,
form#lms-notes-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
    background: #fff;
    justify-content: space-between;
    -webkit-box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #eee;
}
.wbcom-lms-search-notes {
    display: flex;
}
.wbcom-lms-search-notes input[type="text"] {
    border-radius: 8px 0px 0px 8px !important;
}
.wbcom-lms-search-notes input[type="submit"] {
    border-radius: 0px 8px 8px 0px !important;
}
form#lms-notes-filter.lms-instructor-notes-filter {
    flex-wrap: unset;
    gap: 20px;
}

.icn-header td {
    font-weight: 700;
    border: none;
}

tr.icn-items.note-item td.icn-title p {
    margin: 0;
    padding: 0;
}

thead.icn-header {
    background: #f9f9f9;
}

td.icn-title {
    padding: 10px !important;
}

.icn-body td p {
    line-height: normal;
}

.icn-body td {
    vertical-align: top;
    padding: 10px !important;
}

.icn-body .icn-action {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

tr.icn-items.note-item:nth-child(2n+2) {
    background: #fcfcfc;
}

.icn-body td p {
    line-height: normal;
    display: block;
    margin: 0;
}

.lms-notes-listsing table {
    margin: 0;
    width: 100%;
}

.lms-notes-listsing form.lms-note-listing-form {
    width: 100%;
}

form.lms-note-listing-form th,
form.lms-note-listing-form td {
    padding: 10px;
}

form#lms-notes-filter {
    padding:15px;
}

form#lms-notes-filter .nice-select {
    display: none !important;
}

.lms-notes-listsing thead.icn-header th {
    padding: 10px;
    border: none;
}
.lms-notes-listsing tfoot tr td {
    padding: 10px !important;
}


/*--------------------------------------------------------------
# Extra Theme Support
--------------------------------------------------------------*/

.lcn-title-validate-msg:empty {
    display: none;
}

/*--------------------------------------------------------------
# LD Dashboard Support
--------------------------------------------------------------*/
.ld-dashboard-content .lms_notes_list .ld-dashboard-seperator {
    margin: 0 0 15px;
}
.ld-dashboard-content .lms_notes_list .ld-dashboard-seperator span {
    text-transform: none;
}
.ld-dashboard-content .lms_notes_list .ld-dashboard-seperator span:after{
  display: none
}
.ld-dashboard-content .lms_notes_list h2.screen-heading.notes-title{
  font-size: 20px;
  margin-bottom: 15px;
}
.ld-dashboard-content .lms_notes_list form#lms-notes-filter {
    justify-content: space-between;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-left: -1%;
    margin-right: 1%;
}
.ld-dashboard-content .lms_notes_list #lms-notes-filter select {
    max-width: 48%;
    margin: 5px 1%;
    background-color: #fff !important;
    box-shadow: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E') !important;
}
.ld-dashboard-content .lms_notes_list .lms-notes-listsing,
.ld-dashboard-content .lms_notes_list form#lms-notes-filter {
    box-shadow: none;
    border-bottom: none;
    border-color: #e3e3e3;
}
.ld-dashboard-content .lms_notes_list thead.icn-header td {
    font-size: 15px;
    line-height: 1.2;
}
.ld-dashboard-content tr.note-item td.icn-title {
    width: 160px;
}
.ld-dashboard-content .lms-notes-listsing tr.icn-items.note-item td p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 20px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ld-dashboard-content .lms-notes-listsing td.icn-date p.lcn_modfied_time {
    overflow: unset !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    font-size: 15px !important;
    line-height: 18px !important;
    display: block !important;
}
.ld-dashboard-content .lms-notes-listsing .icn-action {
    margin-top: 5px;
}









@media only screen and (max-width: 767px){

  .ld-dashboard-content .lms_notes_list #lms-notes-filter select {
      max-width:100%;
      margin:5px 0;
  }
  .ld-dashboard-content .lms_notes_list form#lms-notes-filter{
    margin: 0 !important;
  }
  .ld-dashboard-content tr.note-item td.icn-title {
      width: auto;
  }

}


@media only screen and (max-width: 569px){
    #ld-dashboard-courses-id,
    .ld-dashboard-student,
    .lms-notes-filter{
        width: 100%;
    }

}