
.deep-analysis-dns-table-item {
  display: grid;
  width: 100%;
  box-sizing: border-box;
  padding: 2px 0;
  color: rgba(173, 227, 255, 0.76);
  font-size: 11px;
  font-weight: 300;
  grid-template-columns: 70px 95px 33px minmax(200px, 1fr) minmax(200px, 1fr);
  line-height: 18px;
  transition: all 0.1s ease-in-out;
}
.deep-analysis-dns-table-item:nth-child(odd) {
    background-color: #003f67;
}
.deep-analysis-dns-table-item:nth-child(even) {
    background-color: rgba(0, 47, 81, 0.6);
}
.deep-analysis-dns-table-item:hover {
    background-color: rgba(31, 100, 145, 0.6);
}
.deep-analysis-dns-table-item--mobile {
  grid-template-columns: 95px 33px 320px minmax(200px, 1fr);
}
.dns-table-item__content {
  display: flex;
  align-items: center;
  padding: 0 6px;
}
.dns-table-item__content-status {
  height: auto;
  padding: 0;
}
.dns-table-item__content-dns,
.dns-table-item__content-ip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dns-table-item__content-domain-text {
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dns-table-item__content-timeshift {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.dns-status-wrapper {
  overflow: hidden;
  width: 100%;
  height: auto;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dsn-ip__not-found {
  padding-left: 16px;
}
.dns-table-item__col-status {
  padding: 3px 5px;
  border-radius: 2px;
}
.dns-table-item__col-status .network-item__status {
    color: #fff;
    font-weight: 400;
    line-height: 1;
    text-transform: capitalize;
}
.dns-table-item__col-status.success, .dns-table-item__col-status.default {
    border: 1px solid #048e83;
    background: rgba(4, 142, 131, 0.46);
}
.dns-table-item__col-status.danger, .dns-table-item__col-status.warning {
    border: 1px solid #c96203;
    background: rgba(201, 98, 3, 0.46);
}

/*# sourceMappingURL=AnalysisDnsTableItem.vue.css.map */