/* .global-tab {
  padding: 5px;
} */
.global-tab .head h4.title {
  display: inline-block;
  line-height: 39px;
  font-weight: bold;
}
.global-tab .head {
  height: 35px;
  padding: 2.5px;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid grey;
  margin-bottom: 7.5px;
}
.global-tab .head .collapse-btn {
  float: right;
  margin-top: 2.5px;
  background-color: transparent;
  border: none;
  font-size: 18px;
  transition: transform 0.25s;
  cursor: pointer;
}
.global-tab .head .collapse-btn.coll {
  transform: rotate(-180deg);
}

.global-tab .content-area {
  position: relative;
  display: none;
  /* height: 0px; */
  /* opacity: 0; */
  /* transition: height 0.25s, opacity 0.25s; */
}
.global-tab .content-area.on {
  display: block;
  /* opacity: 1; */
  /* height: auto; */
}