.ProcessLib {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ProcessLib .top {
  width: 100%;
  height: 40px;
  background: #232629;
  border-radius: 2px 2px 0px 0px;
  display: flex;
  overflow: auto;
}
.ProcessLib .top .title {
  margin-left: 10px;
  margin-top: 10px;
  width: 50px;
  height: 20px;
  display: flex;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #ffffff;
  justify-content: center;
  align-items: center;
}
.ProcessLib .bottom {
  margin-top: 1px;
  width: 100%;
  padding: 5px;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  background: #181818;
  border-radius: 0px 0px 2px 0px;
  align-content: flex-start;
  overflow: auto;
}
.ProcessLib .bottom .item {
  width: 202px;
  border-radius: 2px 2px 2px 2px;
  margin: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  border: 1px solid transparent;
}
.ProcessLib .bottom .item.selected {
  border-color: #2991f1;
}
.ProcessLib .loading {
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  background: #000000b5;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #ffffff;
  line-height: 14px;
}

.RightPanel {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 1px;
  margin-right: 1px;
  width: 400px;
}
.RightPanel .projectProperty {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.RightPanel .projectProperty .top {
  width: 100%;
  height: 40px;
  background: #232629;
  border-radius: 2px 2px 0px 0px;
}
.RightPanel .projectProperty .top .previewText {
  margin-left: 10px;
  margin-top: 12px;
  width: 61px;
  height: 15px;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 14px;
}
.RightPanel .projectProperty .bottom {
  margin-top: 1px;
  flex: 1;
  width: 100%;
  background: #181818;
  border-radius: 0px 0px 2px 2px;
}
.RightPanel .projectProperty .bottom .item {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.RightPanel .projectProperty .bottom .item .text {
  height: 15px;
  font-size: 12px;
  margin-left: 10px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #999999;
  line-height: 14px;
}
.RightPanel .projectProperty .bottom .item .projName {
  flex: 1;
  margin-right: 10px;
  margin-left: 14px;
  height: 30px;
  border: 0px solid;
  background: #111111;
  border-radius: 2px 2px 2px 2px;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #999999;
  resize: none;
}
.RightPanel .projectProperty .bottom .item .projName:focus {
  outline: none;
}
.RightPanel .projectProperty .bottom .item .projDesc {
  flex: 1;
  margin-right: 10px;
  margin-left: 14px;
  width: 332px;
  height: 107px;
  background: #111111;
  border-radius: 2px 2px 2px 2px;
  border: 0px;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #999999;
  line-height: 14px;
  padding: 12px;
  resize: none;
}
.RightPanel .projectProperty .bottom .item .projDesc:focus {
  outline: none;
}

