





.phsaScrollHeader {
  display: inline-grid !important;
  height: 3rem;
  min-width: 100%;
  width: 100%;
  border-left: 2px solid #ccc;
  border-right: 2px solid #ccc;
  border-top: 2px solid #ccc;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  overflow: hidden;
}

.phsaTabSubContent .phsaTabItem .phsaScrollHeader{
  border: unset;
  border-radius: unset;
}

.phsaScrollNav {
  height: 100%;
  width: 100%;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  cursor: grab;
  border-bottom: 0.1px solid #ccc;
}

.phsaScrollList {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
}

.phsaScrollItem {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #495057;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

.phsaScrollItem:hover,
.phsaScrollItem.active {
  background-color: #e1e1e1;
  border-left: 2px solid #ccc;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #e1e1e1;
}

.phsaScrollNav::-webkit-scrollbar {
  display: none;
}

.phsaScrollNav {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.phsaTabContent {
  min-height: 200px;
  display: block;
  min-width: 100%;
  width: 100%;
  border-left: 2px solid #ccc;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: 1rem;
  overflow: hidden;
}

.phsaTabSubContent {
  border-left: 2px solid #ccc;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  border-radius: unset;
  padding: 0px;
  overflow: hidden;
}

.phsaTabSubContent .phsaTabItem .phsaTabContent{
  border: unset;
  border-radius: unset;
}

.phsaTabItem {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.phsaTabItem.active {
  visibility: visible;
  opacity: 1;
  position: relative;
}