.notes-panel {
    position: fixed;
    height: 170px;
    right: 1px;
    top: 150px;
    opacity: 1;
}

.notes-panel:hover {
    opacity: 1;
}

.notes-panel__counter {
    background-color: silver;
}

.notes-panel__counter_active {
    background: deepskyblue;
}

.notes-panel__btn {
    padding: 12px 13px;
    font-size: 23px;
    color: white;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    border: 1px solid #c5c5fd;
}

.notes-panel__btn-add {
    background: #79c979;
}


.notes {
    position: absolute;
    top: 150px;
    right: 43px;
    width: 300px;
    background: rgba(0, 191, 255, 1);
    z-index: 1000;
    padding: 10px;
    border-radius: 5px;
    opacity: 1;

    display: none;
}

.notes:hover {
    opacity: 1;
}

.notes__item {
    overflow: hidden;
    margin-bottom: 10px;
}

.notes__item:last-child {
    margin-bottom: 0;
}

.notes__remove-btn {
    float: left;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #d9534f;
    font-size: 15px;
    color: white;
    cursor: pointer;
}

.notes__body {
    padding: 3px;
    background-color: white;
    float: right;
    width: 85%;
    font-size: 12px;
    min-height: 31px;
}

.notes__form-control {
    text-align: center;
    margin-top: 5px;
}

.notes__textarea {
    width: 100%;
    padding: 10px;

}

textarea.notes__textarea {
    resize: none;
}

.notes__btns {
    margin-top: 12px;
    text-align: center;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.notes__remove-btn_wait-confirm {
    background-color: #fa9f16;
}

.notes__remove-btn_wait-confirm .remove-sign {
    display: none!important;
}

.notes__remove-btn_wait-confirm .confirm-sign {
    display: inline!important;
    color: white;
}

.confirm-sign {
    display: none;
}

.remove-sign {
    display: inline;
}

.notes__remove-all-confirm {
    border-color: #fa9f16!important;
    background-color: #fa9f16!important;
    outline: none!important;
}

.notes__remove-all-confirm:hover {
    border-color: #fa9f16!important;
    background-color: #fa9f16!important;
}

.notes__remove-all-confirm .confirm-sign {
    display: inline;
}

.notes__remove-all-confirm .remove-sign {
    display: none;
}

.notes__remove-al {
    outline: none!important;
}

.pack-note {
    cursor: pointer;
}