.notify__main {
    border-radius: 4px;
    border-left-color: greenyellow;
    border-left-width: 4px;
    border-left-style: solid;
    height: auto;
    min-height: 50px;
    /*min-width: 400px;*/
    /*width: fit-content;*/
    /*max-width: 480px;*/
    width: 400px;
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 10px;
    box-shadow: 0 8px 16px 2px rgba(97, 97, 97, 0.1), 0 16px 32px 2px rgba(97, 97, 97, 0.1);
}

.notify__icon_container {
    width: 20px;
    height: 20px;
    padding: 14px
}

.notify__data_panel {
    display: flex;
    padding: 14px 17px 14px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 480px;
    width: fit-content;
}

.notify__panel_main-st {
    width: 0;
    height: fit-content;
    margin-left: 12px;
    margin-top: auto;
    margin-bottom: 10px;
    background-color: white;
    z-index: 99999999;
}

.notify__icon_close_cont {
    display: flex;
    margin-left: auto;
    margin-top: 15px;
    margin-right: 15px;
}

.notify__icon_close_cont:hover {
    display: flex;
    margin-left: auto;
    background-color: var(--col-hover);
    margin-top: 15px;
    margin-right: 15px;
}

.notify__header_new {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    text-align: left;
    color: #212121;
}

.notify__text_new {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    white-space: pre-wrap;
    display: flex;
    align-items: center;
    overflow-wrap: break-word;
    overflow-y: hidden;
    max-width: 480px;
    color: #8A8A8A;
}

.notify__panel_viewer_main {
    display: flex;
    /*width: 0;*/
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column-reverse;
}

@keyframes anim {
    0% {opacity: 1;}
    100% {opacity: 0;}
}