.errors_page_container{
    position: absolute;
    z-index: 1000;
    right: 15px;
    width: 200px;
    max-height: calc(100svh - 50px);
    bottom: 25px;
    background: transparent;
    overflow: auto;
    display: none;

    &:has(.error_modal){
        display: block;
    }

    .error_modal{
        margin-bottom: 20px;
        padding: 5px 7px;
        background: #fff;
        border: 1px solid #ff0000;
        width: 200px;
        border-radius: 4px;
        .first_line_errors_modal{
            display: flex;
            justify-content: space-between;
            align-items: center;
            .err_data{
                display: flex;
                gap: 5px;
                .title{font-size: 12px;}
                .error_status{font-size: 12px;font-weight: 600;}
            }
            .cross{
                padding: 2px;
                border-radius: 3px;
                cursor: pointer;
                img{
                    width: 12px;
                    display: block;
                }
                &:hover{
                    background: #ececec;
                }
            }
        }
        .err_description{
            font-size: 10px;
            white-space: nowrap;
            width: 100%;
            line-height: 10px;
            height: 10px;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-top: 2px;
        }
    }
}