.dataSourceErrorListComponent-popup {
    width:1100px;
    border-radius: 4px;
    max-height: 372px;
}

.dataSourceErrorList {
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 41, 199, 0.2);
    border-radius: 4px;
    width: 1100px;
    max-height: 372px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.dataSourceErrorList .header {
    flex: 0 0 46px;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: GlowSemiBold;
    font-size: 14px;
    color: #4A4A4A;
}

.dataSourceErrorList .header .textUrl {
    margin-right: 23px;
}

.dataSourceErrorList .header .textUrl .sufix {
    font-family: GlowRegular;
}

.dataSourceErrorList .header .closeBtn {
    cursor: pointer;
}

.dataSourceErrorList .header .mainIcon {
    width: 23px;
    padding-top: 2px;
}

.dataSourceErrorList .header .icon {
    width: 23px;
    height: 23px;
    margin-left: 6px;
    padding-top: 2px;
    cursor: pointer;
}

.dataSourceErrorList .header .mainIcon img {
    vertical-align: top;
}

.dataSourceErrorList .header .icon img {
    vertical-align: text-bottom;
}

.dataSourceErrorList .errorListContainer {
    padding-top: 16px;
    padding-bottom: 23px;
    position: relative;
}

.errorListContainer .errorListHeader .issueListHeader.issueRow {
    color: #808080;
}

.dataSourceErrorList .issueRow {
    display: table;
    height: 28px;
    width: 100%;
    padding: 0 30px;
    padding-top: 3px;
    font-family: GlowRegular;
}

.dataSourceErrorList .errorListWithScroll .issueRow.colorGray {
background-color: #f5f5f5;
}

.dataSourceErrorList .issueRow .column {
    display: table-cell;
    position: relative;
}
.dataSourceErrorList .errorListWithScroll .issueRow .column.queryColumn {
    cursor:pointer;
}

.dataSourceErrorList .issueRow .column.queryColumn {
    width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*!*Add 3 dots after 3 rows. Does not work in IE & Firefox*!*/

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 25px;
    max-height: 50px;
}

.showCopyBtn{
    display: block !important;
}

.dataSourceErrorList .issueRow .column.queryColumn .container {
    margin: 0;
    padding: 0;
    width: 300px;
    display: flex;
    flex-wrap: nowrap;
}

.dataSourceErrorList .issueRow .column.queryColumn .container .copyIcon {
    display: none;
    margin-left: 26px;
    cursor: pointer;
}

.dataSourceErrorList .issueRow .column.errorColumn {
    width: 700px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*!*Add 3 dots after 3 rows. Does not work in IE & Firefox*!*/
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 25px;
    max-height: 50px;
}