// Repetito Fee Styles
.repetito-fee-container {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;

  label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
  }

  input[type="checkbox"] {
    margin: 0;
    cursor: pointer;

    &:checked {
      background-color: #2271b1;
      border-color: #2271b1;
    }
  }

  .repetito-fee-description {
    margin-top: 0.5rem;
    font-size: 0.9em;
    color: #666;
  }
}

// Hide/Show animations for the repetito div
#repetito {
  transition: all 0.3s ease-in-out;

  &.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
  }

  &.visible {
    opacity: 1;
    height: auto;
  }
}