.base-button {
  border-radius: 12px;
  padding: 9px 16px;
  border: 1px solid;
  border-color: #fff;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  width: fit-content;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
  height: fit-content;
}

.base-button_with-icon {
  display: grid;
  grid-template-columns: 20px 1fr;
}

.base-button:hover {
  background-color: #e4e7eb;
  border-color: #e4e7eb;
  color: #3a19a8;
}

.base-button--active {
  background-color: #fff;
  color: #3a19a8;
}

.base-button_transparent {
  background-color: transparent;
  border-color: #3a19a8;
  color: #3a19a8;
  width: 100%;
  justify-content: center;
  font-style: italic;
}

.base-button_transparent:hover {
  background-color: #e4e7eb;
  border-color: #3a19a8;
}

.base-button_secondary {
  background-color: transparent;
  border-color: #3a19a8;
  color: #3a19a8;


}

.base-button_secondary:hover {
  background-color:  #3a19a8 ;
  color:#fff;
}

