/* Quote Container ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* the container for the quote form */
.quote-container {
  display: flex; /* make children flexible */
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; /* horizontally center things */
  align-items: center; /* vertically center things */
  /* width: 100vw;*/ /* make it 100% width */
  /* height: 100vh; /* make it 100% height */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  position: fixed;
  z-index: 9999;
  opacity: 0;
  transition: opacity 1.0s ease;
  pointer-events: none;
}
.quote-container.active {
  opacity: 1;
  pointer-events: all;
}
.quote-container.content {
  pointer-events: auto;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Quote Page ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* the background of the quote form */
#quote-box {
  /* position: relative; */
  padding: 20px;
  height: 350px;

  --background-color: #42abd4;
  --background-highlight: #057eb8;
  --normal-font-weight: 500;
  --large-font-weight: 700;
  --font-color: #f0f8f2;

  background:
  radial-gradient(circle at top left, var(--background-highlight), transparent 50%), /* top left gradient */
  radial-gradient(circle at bottom right, var(--background-highlight), transparent 50%), /* bottom right gradient */
  var(--background-color); /* background color */

  border-radius: 10px; /* round the edges */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: var(--normal-font-weight);
  color: var(--font-color);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* the pages of the quote form */
.quote-page {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1.0s ease;
  pointer-events: none; /* prevents clicks on hidden pages */
}
.quote-page.active {
  opacity: 1;
  pointer-events: auto;
}

/* the headers of the quote form */
#quote-box h1 {
  font-family: inherit;
  font-size: 36px;
  font-weight: var(--large-font-weight);
  color: inherit;
  margin-top: -10px;
}

/* the labels of the quote form */
#quote-total-header {
  font-family: inherit;
  margin-top: -10px;
  font-size: 32px;
  font-weight: inherit;
  color: inherit;
}

/* the headers of the quote form */
#quote-box p {
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--large-font-weight);
  color: inherit;
}

/* the labels of the quote form */
#quote-box label {
  font-family: inherit;
  font-size: 24px;
  font-weight: inherit;
  color: inherit;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Quote Page Input ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* the inputs of the quote form */
#quote-box input {
  margin: 8px 0;

  text-align: center;
  font-family: inherit;
  font-size: 24px;
  font-weight: inherit;
  color: inherit;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  color: var(--background-highlight);

  border: none;
  outline: none;
  border-radius: 4px;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.1);

  -webkit-appearance: none; /* remove default browser styles on Safari/Chrome */
  -moz-appearance: none;    /* remove default browser styles on Firefox */
  appearance: none;         /* standard property */
}
#quote-box input::placeholder {
  font-family: inherit;
  font-size: 24px;
  font-weight: inherit;
  text-shadow: 0 0 2px rgba(0,0,0,0.1);

  color: var(--background-color);
}

/* the select menus of the quote form */
#quote-box select {
  margin: 8px 0;
  width: 60%;

  text-align: center;
  font-family: inherit;
  font-size: 24px;
  font-weight: inherit;
  color: inherit;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  color: var(--background-highlight);

  border: none;
  outline: none;
  border-radius: 4px;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.1);

  -webkit-appearance: none; /* remove default browser styles on Safari/Chrome */
  -moz-appearance: none;    /* remove default browser styles on Firefox */
  appearance: none;         /* standard property */
}
#quote-box select:hover {
  filter: brightness(97%);
}

/* this is the wrapper for the buttons to make them side-by-side */
#quote-button {
  display: flex;           /* side-by-side layout */
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex:none;
}

/* the buttons of the quote form */
#quote-box button {
  font-family: inherit;
  font-size: 36px;
  font-weight: var(--large-font-weight);
  color: var(--background-highlight);

  background-color: #FFFFFF;
  
  border: none;
  outline: none;
  border-radius: 10px;
  width: 130px;
  height: 50px;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);

  cursor: pointer;
  -webkit-appearance: none; /* remove default browser styles on Safari/Chrome */
  -moz-appearance: none;    /* remove default browser styles on Firefox */
  appearance: none;         /* standard property */
}
#quote-box button:hover {
  background-color: var(--background-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
