.pageTop {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  padding-top: 25px;
  font-family: var(--default-font);
}
.pageTop .titleCol {
  padding: 0 15px 0 0;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
}
.pageTop .titleCol h2 {
  padding: 0px 0 10px 0;
  font-family: var(--default-font);
  font-weight: 600;
}
.pageTop .titleCol svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  color: var(--info-color);
}
.pageTop .titleCol svg * {
  fill: #999999;
}
.pageTop .titleCol .created,
.pageTop .titleCol .status {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.pageTop .titleCol .titleInfo {
  display: flex;
  color: var(--gray);
}
.pageTop .titleCol .status {
  position: relative;
}
.pageTop .titleCol .status span {
  padding-left: 15px;
}
.pageTop .titleCol .status span:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;

  position: absolute;
  border-radius: 10px;
  top: 5px;
  left: 0px;
}

.pageTop .titleCol .status span.activeStatus:before {
  background: var(--success);
}
.pageTop .titleCol .status span.inactiveStatus:before {
  background: var(--info);
}
.pageTop .control {
  padding: 0 0px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pageTop .control .btn {
  display: flex;
  align-items: center;
}
.pageTop .control .btn svg {
  margin-right: 10px;
}
.pageTop .control .btn svg * {
  stroke: white;
}
.pageTop .control input[type="text"] {
  height: 37px;
  border: solid 1px var(--border-color);
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 14px;
}

.pageTop .searchBox {
  position: relative;
}
.pageTop .searchBox input {
  width: 250px;
}
.pageTop .searchBox img {
  width: 18px;
  filter: opacity(0.5);
}
.pageTop .searchBox button {
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border: none;
  background: transparent;
  border-radius: 0px;
}
