.panelGroup {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.panelGroup .titlePanel {
  display: flex;
  height: 4.6296296296vh;
  width: 100%;
  align-items: center;
  background: url("./img/panelContainerTitleBg.png") no-repeat;
  background-size: 100% 100%;
}
.panelGroup .titlePanel .title {
  margin-left: 1.0416666667vw;
  font-family: "MiSans";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}
.panelGroup .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("./img/panelContainerBorder.png") no-repeat;
  background-size: 100% 100%;
  height: calc(100% - 4.6296296296vh);
  width: 100%;
  position: relative;
}
.panelGroup .containerBg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 25px 0px rgba(56, 207, 255, 0.85) inset;
  -webkit-backdrop-filter: blur(37px);
          backdrop-filter: blur(37px);
  top: 0;
  z-index: -1;
}