.b-table-item {
  position: relative;
  box-sizing: border-box;
  min-height: 46px;
  padding: 40px 30px;
  display: flex;
  column-gap: 20px;
  width: 100%;

  font-family: 'Arial';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;

  color: #868686;
}

.b-table-item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 1%;
  width: 98%;
  height: 1px;
  background-color: gray;
  opacity: 0.3;
}

.b-table-item:hover {
  background: #F8F8F8;
  color: black;
}

.b-table-item:first-child:before {
  position: absolute;
  content: unset;
  bottom: 0;
  left: 1%;
  width: 98%;
  height: 0;
  background-color: gray;
  opacity: 0.3;
}

.b-siteuser-wrapper {
  display: flex;
  gap: 5px;
}

.b-siteuser-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.b-siteuser-info__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.b-siteuser-controls {
  position: absolute;
  min-width: 30px;
  display: flex;
  gap: 15px;
  top: 40px;
  right: 30px;
  min-height: 80px;
  justify-content: space-evenly;
}

.b-siteuser-icon {
  cursor: pointer;
}

.b-siteuser-icon svg path {
  stroke: #747474;
}

.b-siteuser-icon:hover svg path{
  stroke: black;
}

.access-siteuser {
  display: inline-block;
  margin-left: 5px;
  color: #fff !important;
}

.b-row__flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.siteuser__description {
  min-height: 110px;
}

.site_user-control::placeholder {
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;

  color: #868686;
}

.siteuser__divider {
  border-bottom: 4px solid #dbdbe1;
}

.siteuser-btn {
  cursor: pointer;
}

.siteuser-generate {
  font-family: "Arial";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  text-decoration-line: underline;
  color: #8cc63e;

  height: 46px;
  display: flex;
  align-items: center;
}

.siteuser-error {
  font-family: "Arial";
  font-style: normal;
  height: 46px;
  display: flex;
  align-items: center;
  color: #ed1b2e;
}

.siteuser-success {
  font-family: "Arial";
  font-style: normal;
  height: 46px;
  display: flex;
  align-items: center;
  color: #8cc63e;
}

.siteuser-list {
  background: #ffffff;
  border: 1px solid #dbdbe1;
  box-sizing: border-box;
}

.flex {
  display: flex;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.justify-start {
  justify-content: flex-start;
}