.table-content {
  margin-top: 10px;
}

.cell-center {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.cell-center-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-div {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.name {
  color: #6f6f70;
  font-size: 12px;
}

.email {
  color: #acacac;
  font-size: 10px;
}

.time-status {
  color: #acacac;
  font-size: 14px;
}

.flag-name {
  color: #acacac;
  font-size: 14px;
}

.dropbtn {
  padding-left: 60px;
  padding-top: 15px;
  border: none;
}

.dropdown {
  position: absolute;
  display: block;
  z-index: 1000;
}

.dropdown-content {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  padding: 10px;
  background-color: #b8b8b8;
  cursor: pointer;
}

.dropdown-content span {
  color: white;
  font-size: 10px;
  text-align: center;
  text-decoration: none;
  display: block;
}

.dropdown:hover {
  color: red;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.severity-div {
  border-radius: 20px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  text-align: center;
}

.severity-text {
  width: 100%;
}

.severity-div.high {
  border: 1px solid #e86363;
  color: #e86363;
}

.severity-div.medium {
  border: 1px solid #ec9407;
  color: #ec9407;
}

.severity-div.info {
  border: 1px solid #3c84fc;
  color: #3c84fc;
}

.severity-inner-div {
  width: 25px;
  height: 28px;
  border-radius: 0px 20px 20px 0px;
}

.severity-inner-div.high {
  background-color: #e86363;
}

.severity-inner-div.medium {
  background-color: #ec9407;
}

.severity-inner-div.info {
  background-color: #3c84fc;
}

.severity-radio {
  width: 21px;
  height: 2em;
}

.filter-icon {
  margin: 0 5px;
}

.time-filter {
  position: absolute;
  display: block;
}

.time-filter-btn {
  cursor: pointer;
}

.time-filter-div {
  display: none;
  position: relative;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 10px;
  background-image: linear-gradient(to right, #f98f85, #fca878);
  border-radius: 8px;
  right: -55px;
}

.last-filter {
  right: -10px;
}

.filter-user-text {
  margin: 5px 5px 15px 5px;
  padding-bottom: 5px;
  color: white;
  border-bottom: 2px solid white;
}

.filter-user-input {
  background-color: white;
  border-radius: 50px;
  padding: 5px;
  border: 0px;
  outline: none;
}

.confirm-btn {
  background-color: white;
  padding: 5px;
  margin-bottom: -5px;
  margin-left: 5px;
  border-radius: 20px;
  bottom: 0px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.severity-filter {
  position: absolute;
  display: block;
}

.severity-filter-btn {
  cursor: pointer;
}

.severity-filter-div {
  display: none;
  position: relative;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 10px;
  background-image: linear-gradient(to right, #f98f85, #fca878);
  border-radius: 8px;
  right: -82px;
  top: -5px;
}

.severity-filter-inner-div {
  display: flex;
  width: 100%;
}

.severity-filter-selection-div {
  background-color: white;
  border-radius: 5px;
  padding: 5px;
}

.severity-filter-selection-list {
  padding: 0px;
}

.severity-filter-selection-list > li {
  list-style: none;
  margin: 0 0 0.8125em 0;
  display: flex;
}

.confirm-severity-btn {
  background-color: white;
  padding: 5px;
  margin-left: 5px;
  border-radius: 20px;
  bottom: -160px;
  width: 25px;
  height: 25px;
  position: relative;
  align-content: center;
  cursor: pointer;
}

.severity-medium-text {
  width: 100%;
  color: #fa8227;
}

.severity-low-text {
  color: #cccd50;
}

.severity-info-text {
  color: #b8b8b8;
}

.severity-medium-border {
  border-color: #fa8227;
}

.severity-low-border {
  border-color: #cccd50;
}

.severity-info-border {
  border-color: #b8b8b8;
}

.severity-medium-div {
  background-color: #fa8227;
}

.severity-low-div {
  background-color: #cccd50;
}

.severity-info-div {
  background-color: #b8b8b8;
}

.Table__pagination {
  display: flex;
  justify-content: center;
  padding: 20px 10px;
}

.Table__pageButton {
  font-size: 14px;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: rgb(110, 106, 106);
  margin: 0px 10px;
}

.Table__pageButton:active {
  color: rgb(93, 45, 45);
}

.Table__pageButton:disabled {
  cursor: not-allowed;
  color: gray;
}

.Table__pageButton--active {
  color: white;
  background-color: #f98f85;
  border: 1px solid #f98f85;
  border-radius: 10px;
}

.table-content-mobile {
  display: none;
}

.go-to-text {
  font-size: 12px;
  color: #acacac;
  margin-right: 5px;
}

.go-to-input {
  width: 30px;
  border-radius: 5px;
  outline: none;
}

@media only screen and (max-width: 425px) {
  .table-content {
    display: none;
  }

  .table-content-mobile {
    display: block;
    width: 100%;
  }

  .table-content-div {
    display: flex;
    border-radius: 5px;
    border: 1px solid black;
    background-color: #f8f8f8;
    padding: 5px;
    margin-bottom: 10px;
  }

  .info-div {
    display: flex;
    justify-content: center;
    border-right: 1px solid #6f6f70;
    width: 100px;
    padding-right: 15px;
    /* padding-right: 10px; */
  }

  .info-name {
    color: #6f6f70;
    font-size: 10px;
  }

  .info-flag-name {
    color: #acacac;
    font-size: 10px;
  }

  .mark-div {
    background-color: #fa8227;
    border-radius: 7px 0px 0px 7px;
    width: 15px;
    margin-right: 15px;
    height: 100%;
  }

  .medium {
    background-color: #cccd50;
  }

  .address-div {
    padding-bottom: 5px;
  }

  .time-div {
    padding-top: 5px;
  }

  .detail-content-div {
    padding: 5px 5px 5px 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .user-div {
    justify-content: normal;
  }

  .image-div {
    margin-right: 5px;
  }

  .status-span {
    color: #747474;
    font-size: 14px;
  }

  .detail-tags {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .menu {
    background-image: linear-gradient(to right, #f98f85, #fca878);
    padding: 5px;
    margin-bottom: -5px;
    margin-left: 5px;
    border-radius: 20px;
    bottom: 0px;
    width: 20px;
    height: 20px;
    color: white;
    text-align: center;
  }

  .section-one {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .detail-content {
    display: flex;
    justify-content: space-between;
    width: 50%;
  }

  .detail-content-sections {
    display: flex;
    flex-direction: column;
    width: 25%;
  }

  .head-span {
    font-size: 8px;
    color: #acacac;
  }

  .child-span {
    font-size: 14px;
  }
}
