.vt-cenik-table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
  margin-bottom: 3rem;
  border-radius: 12px;


  max-width: 100%;
}


.vt-cenik-table-scroll table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}


.vt-cenik-table-scroll td {
  text-align: center;
  padding: 1.5rem;

  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}


.vt-cenik-table-scroll tr:first-child td {
  background: #0f65e6;
  color: #f9fdfe;
  font-weight: bold;
}


.vt-cenik-table-scroll tr:nth-child(2) td {
  background: #c9e9ff;
  color: #0d2328;
  font-weight: normal;
}


.vt-cenik-table-scroll tr:first-child td:first-child {
  border-top-left-radius: 2rem;
}

.vt-cenik-table-scroll tr:first-child td:last-child {
  border-top-right-radius: 2rem;
}

.vt-cenik-table-scroll tr:last-child td:first-child {
  border-bottom-left-radius: 2rem;
}

.vt-cenik-table-scroll tr:last-child td:last-child {
  border-bottom-right-radius: 2rem;
}


.scroll-hint {
  display: none;
  text-align: center;
  font-size: 1.5rem;
  color: #0f65e6;
  margin-top: 12px;
  margin-bottom: 3rem;
  opacity: 0.8;
}


.vt-cenik-table-scroll.has-overflow+.scroll-hint {
  display: block;
}


.scroll-hint::after {
  content: " → → →";
  display: inline-block;
  animation: swipeArrow 1.2s infinite ease-in-out;
  color: #0f65e6;
}


@keyframes swipeArrow {
  0% {
    transform: translateX(0);
    opacity: 0.3;
  }

  50% {
    transform: translateX(6px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 0.3;
  }
}