/* Custom CSS for Vizzoro */

/* Solutions Tabs */
.solution-tab {
  cursor: pointer;
  user-select: none;
}

.solution-tab.active {
  background-color: #f9f7ff;
  border: 2px solid #7d6fe2;
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(125,111,226,0.1);
}

.solution-tab.active .solution-icon {
  background-color: #efe9ff;
}

.solution-tab.active h4 {
  color: #7d6fe2;
}

/* Tab content container */
.tab-content {
  position: relative;
  min-height: 400px; /* Установите минимальную высоту, чтобы избежать скачков */
  overflow: hidden;
}

/* Tab panes */
.tab-content .tab-pane {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
}

.tab-content .tab-pane.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

/* Tab content styling */
.tab-pane h4 {
  color: #ff6b81;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tab-pane p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tab-pane .ticks-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab-pane .ticks-list span {
  flex: 0 0 50%;
  margin-bottom: 10px;
  color: #555;
}

.tab-pane .ticks-list span i {
  color: #7d6fe2;
  margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .tab-content {
    min-height: 600px; /* Больше высоты для мобильных устройств */
  }
} 