.tooltip-text {
  visibility: hidden;
  position: absolute;
  z-index: 2;
  width: 300px;
  color: white;
  font-size: 12px;
  background-color: #192733;
  border-radius: 10px;
  padding: 10px 15px 10px 15px;
  text-align: center;
}

.tooltip-text::before {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  background-color: #192733;
  padding: 5px;
  z-index: 1;
}

.hover-text:hover .tooltip-text {
  visibility: visible;
}

#bottom {
  bottom: -20%;
  left: -5%;
  opacity: 0;
  transition: opacity 0.5s;
}

.hover-text:hover #bottom {
  opacity: 1;
}

#bottom::before {
  top: -5%;
  left: 45%;
}


.hover-text {
  position: relative;
  display: inline-block;
}

.sp_row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-wrapper {
  width: 100%;
}

@media (min-width: 1200px) {
  .container {
    width: 80vw;
  }
}

.sorting {
  white-space: break-spaces !important;
}