.request-offer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  display: none;
}

.request-offer-modal-content {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-self: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid var(--text-gray-light);
  background: var(--bg-dark);
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  height: -moz-max-content;
  height: max-content;
  max-height: 90vh;
  overflow: auto;
  width: 100%;
  max-width: 600px;
  overflow-x: hidden;
}

.request-offer-modal-content .close-modal {
    background-color: transparent;
    border: none;
  }

.request-offer-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.request-offer-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.request-offer-input-wrapper input {
    background: transparent;
    display: flex;
    padding: 12px 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    font-size: 18px !important;
    color: var(--white) !important;
    border-radius: 12px;
  }

/* Remove number input spinners */

.request-offer-input-wrapper input[type="number"]::-webkit-outer-spin-button,
  .request-offer-input-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

.request-offer-input-wrapper input[type="number"] {
    -moz-appearance: textfield;
  }

.request-offer-input-wrapper input:placeholder {
    font-size: 18px !important;
  }

.request-offer-checkbox-terms-container a {
  color: var(--text-red-300);
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.request-offer-button {
  background: var(--red-200);
  width: 100%;
  text-transform: uppercase;
  margin-top: 32px;
}
