.block {
  background-color: var(--header-bg-color);
  border-radius: 24px;
  padding: 56px 48px;
  overflow: hidden;
  margin-bottom: 10px;
}

.tarif {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tarif_block {
  display: flex;
  width: 100%;
}

.pricing {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#price {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
.badge {
  padding: 5px 12px;
  background-color: var(--bg-primary);
  border-radius: 12px;
  color: aliceblue;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

#input {
  width: 50%;
  height: 35px;
  border-radius: 12px;
  border: 2px solid var(--bg-primary);
  padding-left: 10px;
}
