.comparator-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #f5f5f5;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  z-index: 101;
  position: relative;
}

.comparator-left, .comparator-right {
  display: flex;
  align-items: center;
}

.checkbox-container {
  display: flex;
  gap: 10px;
  padding-right: 20px;
}

.visual-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #6B6B6B;
  border-radius: 3px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 150ms ease;
}

.visual-checkbox.loading{
  opacity: 0;
}

.visual-checkbox.checked{
  background-color: #252525;
}

.compare-button {
  padding: 5px 15px;
  background-color: #6B6B6B;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.compare-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.selected-count {
  font-size: 14px;
  color: #333;
  opacity: 1;
  transition: opacity 150ms ease;
}

.selected-count.loading{
  opacity: 0;
}

#contentComparator.full-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5rem 0;
  background: rgba(255,255,255,1);
  z-index: 100;
  height: 100%;
  overflow: auto;
}
