.ttitle {
  font-weight: 600;
  padding: 2px 10px;
  color: #ffffff;
  margin: 10px 0;
  background: #5f13bf;
}
.tcontainer {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  cursor: -webkit-grab;
  cursor: grab; /* Курсор будет выглядеть как рука */
}
.tcontainer:active {
  cursor: -webkit-grabbing;
  cursor: grabbing; /* Курсор будет выглядеть как хватающая рука при нажатии */
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.tcontainer tbody {
  white-space: nowrap;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.tcontainer table tbody tr td {
  padding: 0.5rem;
}
.tcontainer table td {
  border: 1px solid #D7D7D7;
  border-collapse: collapse;
}
.tcontainer .table-right {
  margin-left: 4px;
  height: 100%;
}
.t2 {
  font-weight: 600;
}
.tcontainer .table-left thead, .tcontainer .table-right thead {
  height: 100px;
  font-weight: 600;
}
.tcontainer .table-left {
  background: #F1F1F1;
  box-shadow: 2px 0px 2px 1px rgba(0, 0, 0, 0.2);
  min-width: 115px;
}
.tcontainer .table-left thead tr td {
  padding: 0 0.2rem;
}
.tcontainer .table-left, .tcontainer .table-right {
  border-collapse: collapse;
  text-align: center;
}
.tcontainer .table-wrapper {
  position: relative;
  max-width: 70%; /* Вы можете изменить это значение в соответствии с вашими потребностями */
}
.tcontainer .table-wrapper:first-child {
  position: -webkit-sticky; /* Для Safari */
  position: sticky;
  left: 0;
  z-index: 1;
  background: white;
}
@media (max-width: 550px) {
  .tcontainer .td-thead {
    text-align: left;
    padding-left: 10px;
  }
}
.tcontainer::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
/* Цвет полосы прокрутки */
.tcontainer::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
/* Цвет ползунка прокрутки */
.tcontainer::-webkit-scrollbar-thumb {
  background: #5f13bf;
  border-radius: 10px;
}
/* Цвет ползунка прокрутки при наведении */
.tcontainer::-webkit-scrollbar-thumb:hover {
  background: var(--theme-secondary-color);
}
.tcontainer .t3 thead {
  height: 62px;
  background: #F1F1F1;
}
.tcontainer .table-left.t3 {
  font-weight: 600;
  background: #FFFFFF;
  height: 100%;
}
.tcontainer tfoot {
  height: 114px;  
}
