body {
  margin: 0px;
  padding: 0px;
  color: white;
  width: 100vw;
  background: black;
  background-color: black;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
}

.buffer {
  height: 88px;
}

.buffer.small {
  height: 64px;
}

.header {
  width: 100vw;
  position: -webkit-sticky;
  position: sticky;
  background: black;
  top: -1px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  z-index: 3;
}

.header > .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 144px;
  padding: 18px 0px;
  padding-top: 19px;
  height: 88px;
  overflow: visible;
  box-sizing: border-box;
  transition: width ease 0.7s;
  -webkit-transition: width ease 0.7s;
}

.header > .nav > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header.is-pinned > .nav {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
}

.header > .nav > .button-container {
  overflow: hidden;
  width: 0px;
  transition: width ease 0.7s, opacity ease 0.7s;
  -webkit-transition: width ease 0.7s, opacity ease 0.7s;
  box-sizing: border-box;
  height: 41px;
  border-radius: 21px;
  opacity: 0;
}

.header.is-pinned > .nav > .button-container {
  width: 118px;
  opacity: 1;
}

.header > .nav > .button-container > button {
  color: transparent;
  transition: color ease 0.7s;
  -webkit-transition: color ease 0.7s;
}
.header.is-pinned > .nav > .button-container > button {
  color: white;
}

.header > .nav > a > img {
  width: 144px;
  transition: width ease 0.7s;
  -webkit-transition: width ease 0.7s;
}

.header > .nav > a {
  text-decoration: none;
}

.header > .nav > a > p {
  overflow: hidden;
  width: 201px;
  white-space: nowrap;
  color: white;
  font-weight: 600;
  opacity: 1;
  transition: width ease 0.7s, margin ease 0.7s, opacity ease 0.7s;
  -webkit-transition: width ease 0.7s, margin ease 0.7s, opacity ease 0.7s;
  margin-left: 10px;
}

.header > .nav > a > p > span {
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

.header:not(.is-pinned) > .nav > a > p {
  width: 0px;
  margin-left: 0px;
  opacity: 0;
}
.header.is-pinned > .nav > a > img {
  width: 56px;
}

.content {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  box-sizing: border-box;
}

.container {
  box-sizing: border-box;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content > h1 {
  margin: 0px;
  padding: 0px;
  font-size: 59px;
  line-height: 62px;
  font-weight: 600;
}

.content > h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  margin: 0px;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
}

span.gradient {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: -moz-linear-gradient(8deg, rgba(102,0,255,1) 0%, rgba(255,0,0,1) 90%);
  background-image: -webkit-linear-gradient(8deg, rgba(102,0,255,1) 0%, rgba(255,0,0,1) 90%);
  background-image: linear-gradient(8deg, rgba(102,0,255,1) 0%, rgba(255,0,0,1) 90%);
}

button {
  border-radius: 100px;
  outline: none;
  border: none;
  background: black;
  background-color: black;
  color: white;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  padding: 13px 32px;
  margin: 0px;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity linear 0.1s;
  cursor: pointer !important;
}

button.gradient {
  background: rgb(102,0,255);
  background: -moz-linear-gradient(215deg, rgba(102,0,255,1) 0%, rgba(255,0,0,1) 50%, rgba(255,204,0,1) 110%);
  background: -webkit-linear-gradient(215deg, rgba(102,0,255,1) 0%, rgba(255,0,0,1) 50%, rgba(255,204,0,1) 110%);
  background: linear-gradient(215deg, rgba(102,0,255,1) 0%, rgba(255,0,0,1) 50%, rgba(255,204,0,1) 110%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6600ff",endColorstr="#ffcc00",GradientType=1);
  -moz-box-shadow: inset 0 0 10px rgba(255,255,255,0.44);
  -webkit-box-shadow: inset 0 0 10px rgba(255,255,255,0.44);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.44);
}

button:active {
  opacity: 0.8;
}

button.full-width {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
}


.bounds {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  margin-top: -10px;
}

.bounds.range {
  margin-top: -10px;
}

.bounds > h1 {
  font-family: 'Figtree';
  font-size: 70px;
  line-height: 70px;
  font-weight: 300;
  margin-top: 4px;
  margin-bottom: 12px;
  padding: 2px 0px;
}

.bounds > small {
  font-family: 'Figtree', sans-serif;
  color: rgba(0,0,0,0.4);
  font-weight: 700;
  font-size: 15px;
  z-index: -1;
  margin: 0px;
}

.slider {
  margin-top: 16px !important;
  padding: 2px 0px;
}

.dollar-sign {
  font-family: 'Figtree', sans-serif;
  color: black;
  font-weight: 300;
  font-size: 30px;
  vertical-align: super;
  margin-right: -13px;
}

.middle {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.cents {
  font-family: 'Figtree', sans-serif;
  color: black;
  font-weight: 300;
  font-size: 30px;
  vertical-align: super;
  margin-left: -13px;
}

.estimate-info {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  height: 0px;
  margin-top: -38px;
  margin-bottom: 27px;
  padding-right: 1px;
  box-sizing: border-box;
  overflow: visible;
}

.estimate-info > img {
  width: 16px;
  height: 16px;
  opacity: 0.4;
  float: right;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity linear 0.1s;
}

.estimate-info > img:active {
  opacity: 0.3;
}

.gradient-box {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  padding: 36px 0px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: white;
  flex-direction: column;
  background: rgb(102,0,255);
  background: -moz-linear-gradient(215deg, rgba(102,0,255,0.4) 0%, rgba(255,0,0,0.4) 60%, rgba(255,204,0,0.4) 120%);
  background: -webkit-linear-gradient(215deg, rgba(102,0,255,0.4) 0%, rgba(255,0,0,0.4) 60%, rgba(255,204,0,0.4) 120%);
  background: linear-gradient(215deg, rgba(102,0,255,0.4) 0%, rgba(255,0,0,0.4) 60%, rgba(255,204,0,0.4) 120%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6600ff",endColorstr="#ffcc00",GradientType=1);
  -moz-box-shadow: inset 0 0 18px rgba(255,255,255,0.4);
  -webkit-box-shadow: inset 0 0 18px rgba(255,255,255,0.4);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.4);
  border-radius: 20.5px;
  overflow: hidden;
}

.gradient-box > h1 {
  margin: 0px;
  padding: 0px 36px;
  font-size: 42px;
  line-height: 44px;
  font-weight: 600;
}

.gradient-box > h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  margin: 0px;
  opacity: 0.7;
  padding: 0px 36px;
}

#app-icon {
  width: 200px;
  height: 183px;
  transform: translateY(100px);
  margin-top: 0px;
  opacity: 0.5;
  transition: transform ease 1.2s, width ease 1.2s, height ease 1.2s, margin-top ease 1.2s, opacity ease 1.2s;
  -webkit-transition: transform ease 1.2s, width ease 1.2s, height ease 1.2s, margin-top ease 1.2s, opacity ease 1.2s;
}

#app-icon.is-pinned {
  transform: translateY(0px);
  width: 228px;
  height: 209px;
  margin-top: -26px;
  opacity: 1;
}

input[type=text] {
  transition: border-color ease 0.2s;
}

input[type=text][invalid=true] {
  border-color: rgba(255,0,0,0.6) !important;
}

input[type=text][readonly=true] {
  opacity: 0.4;
}

input[type=text]::placeholder {
  color: rgba(255,255,255,0.3);
}

input[type=text] {
  border: none;
  outline: none;
  border-bottom: 3px solid rgba(255,255,255,0.6);
  padding: 16px;
  padding-left: 0px;
  background: transparent;
  box-sizing: border-box;
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  color: white;
  font-size: 20px;
  line-height: 20px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  border-radius: 4px;
}

input:focus {
  border-bottom: 3px solid rgba(255,255,255,1);
}

input[type=text].phone {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  background: url('../assets/images/us-flag.png') no-repeat left;
  background-size: 30px;
  background-position: left;
  background-repeat: no-repeat;
  image-orientation: none;
  margin: 16px 0px;
  padding-left: 48px;
}

p.small {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,0,0,0.3);
  text-align: center;
  margin: 4px 0px;
}

h2 {
  margin: 0px;
  font-size: 42px;
  line-height: 44px;
  font-weight: 600;
}


.footer {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer > div.wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer > p, .footer > div.wrapper > a {
  font-size: 14px;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  padding: 12px;
  margin: 0px;
}

#input-box {
  transition: height ease 0.7s, margin-top ease 0.7s;
  -webkit-transition: height ease 0.7s, margin-top ease 0.7s;
  box-sizing: border-box;
  overflow: hidden;
  height: 194px;
}

#input-box.hidden {
  height: 0px;
  margin-top: 40px;
}

button.loading {
  background-image: url('../assets/images/loader-white.svg');
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent !important;
}

#submit {
  background-color: black;
  color: white;
  transition: background-color ease 0.7s, color ease 0.7s;
  -webkit-transition: background-color ease 0.7s, color ease 0.7s;
}

#submit.done {
  background: rgb(102,0,255);
  background: -moz-linear-gradient(215deg, rgba(102,0,255,0.4) 0%, rgba(255,0,0,0.4) 50%, rgba(255,204,0,0.4) 110%);
  background: -webkit-linear-gradient(215deg, rgba(102,0,255,0.4) 0%, rgba(255,0,0,0.4) 50%, rgba(255,204,0,0.4) 110%);
  background: linear-gradient(215deg, rgba(102,0,255,0.4) 0%, rgba(255,0,0,0.4) 50%, rgba(255,204,0,0.4) 110%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6600ff",endColorstr="#ffcc00",GradientType=1);
  -moz-box-shadow: inset 0 0 10px rgba(255,255,255,0.4);
  -webkit-box-shadow: inset 0 0 10px rgba(255,255,255,0.4);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.4);
  pointer-events: none;
}

a.white {
  border-bottom: 3px solid rgba(255,255,255,0.6);
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

iframe {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border: none;
  border-radius: 20.5px;
}

@supports not ( -moz-appearance:none ) {
  .header {
    backdrop-filter: blur(20px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
    background: rgba(0,0,0,0.67) !important;
  }
}
