@import "https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&family=Spline+Sans:wght@300..700&display=swap";
/* [project]/node_modules/@djthoms/pretty-checkbox/dist/pretty-checkbox.min.css [app-client] (css) */
.pretty * {
  box-sizing: border-box;
}

.pretty input:not([type="checkbox"]):not([type="radio"]) {
  display: none;
}

.pretty {
  white-space: nowrap;
  margin-right: 1em;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.pretty input {
  z-index: 2;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  min-width: 1em;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.pretty .state label {
  position: initial;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
  margin: 0;
  font-weight: 400;
  display: inline-block;
}

.pretty .state label:after, .pretty .state label:before {
  content: "";
  box-sizing: border-box;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  position: absolute;
  top: calc(1em - 108%);
  left: 0;
}

.pretty .state label:before {
  border-color: #bdc3c7;
}

.pretty .state.p-is-hover, .pretty .state.p-is-indeterminate {
  display: none;
}

@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes tada {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
    transform: scale(7);
  }

  38% {
    opacity: 1;
    animation-timing-function: ease-out;
    transform: scale(1);
  }

  55% {
    animation-timing-function: ease-in;
    transform: scale(1.5);
  }

  72% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }

  81% {
    animation-timing-function: ease-in;
    transform: scale(1.24);
  }

  89% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }

  95% {
    animation-timing-function: ease-in;
    transform: scale(1.04);
  }

  100% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}

@keyframes jelly {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(.75, 1.25, 1);
  }

  40% {
    transform: scale3d(1.25, .75, 1);
  }

  50% {
    transform: scale3d(.85, 1.15, 1);
  }

  65% {
    transform: scale3d(1.05, .95, 1);
  }

  75% {
    transform: scale3d(.95, 1.05, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    transform: translateZ(-200px)rotate(-45deg);
  }

  100% {
    opacity: 1;
    transform: translateZ(0)rotate(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 #bdc3c7;
  }

  100% {
    box-shadow: 0 0 0 1.5em rgba(189, 195, 199, 0);
  }
}

.pretty.p-default.p-fill .state label:after {
  transform: scale(1);
}

.pretty.p-default .state label:after {
  transform: scale(.6);
}

.pretty.p-default input:checked ~ .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-default.p-thick .state label:after, .pretty.p-default.p-thick .state label:before {
  border-width: .142857em;
}

.pretty.p-default.p-thick .state label:after {
  transform: scale(.4) !important;
}

.pretty.p-icon .state .icon {
  z-index: 1;
  text-align: center;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0);
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  font-size: 1em;
  line-height: normal;
  position: absolute;
  top: calc(1em - 108%);
  left: 0;
}

.pretty.p-icon .state .icon:before {
  text-align: center;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 1;
  display: flex;
}

.pretty.p-icon input:checked ~ .state .icon, .pretty.p-icon input:indeterminate ~ .state .icon {
  opacity: 1;
}

.pretty.p-icon input:checked ~ .state label:before, .pretty.p-icon input:indeterminate ~ .state label:before {
  border-color: #5a656b;
}

.pretty.p-svg .state .svg {
  z-index: 1;
  text-align: center;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0);
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  font-size: 1em;
  line-height: normal;
  position: absolute;
  top: calc(1em - 108%);
  left: 0;
}

.pretty.p-svg .state svg {
  text-align: center;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 1;
  display: flex;
}

.pretty.p-svg input:checked ~ .state .svg, .pretty.p-svg input:indeterminate ~ .state .svg {
  opacity: 1;
}

.pretty.p-image .state img {
  opacity: 0;
  z-index: 0;
  text-align: center;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  line-height: normal;
  position: absolute;
  top: calc(1em - 108%);
  left: 0;
  transform: scale(.8);
}

.pretty.p-image input:checked ~ .state img, .pretty.p-image input:indeterminate ~ .state img {
  opacity: 1;
}

.pretty.p-switch input {
  min-width: 2em;
}

.pretty.p-switch .state {
  position: relative;
}

.pretty.p-switch .state:before {
  content: "";
  width: 2em;
  -webkit-box-sizing: unset;
  box-sizing: unset;
  z-index: 0;
  -o-transition: all .5s ease;
  border: 1px solid #bdc3c7;
  border-radius: 60px;
  height: calc(1em + 2px);
  transition: all .5s;
  position: absolute;
  top: calc(1em - 116%);
}

.pretty.p-switch .state label {
  text-indent: 2.5em;
}

.pretty.p-switch .state label:after, .pretty.p-switch .state label:before {
  -o-transition: all .5s ease;
  border-color: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all .5s;
  left: 0;
  transform: scale(.8);
}

.pretty.p-switch .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-switch input:checked ~ .state:before {
  border-color: #5a656b;
}

.pretty.p-switch input:checked ~ .state label:before {
  opacity: 0;
}

.pretty.p-switch input:checked ~ .state label:after {
  left: 1em;
  background-color: #5a656b !important;
}

.pretty.p-switch.p-fill input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-switch.p-fill input:checked ~ .state label:before {
  opacity: 0;
}

.pretty.p-switch.p-fill input:checked ~ .state label:after {
  left: 1em;
  background-color: #fff !important;
}

.pretty.p-switch.p-slim .state:before {
  height: .1em;
  top: calc(50% - .1em);
  background: #bdc3c7 !important;
}

.pretty.p-switch.p-slim input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-has-hover input:hover ~ .state:not(.p-is-hover) {
  display: none;
}

.pretty.p-has-hover input:hover ~ .state.p-is-hover, .pretty.p-has-hover input:hover ~ .state.p-is-hover .icon {
  display: block;
}

.pretty.p-has-focus input:focus ~ .state label:before {
  box-shadow: 0 0 3px #bdc3c7;
}

.pretty.p-has-indeterminate input[type="checkbox"]:indeterminate ~ .state:not(.p-is-indeterminate) {
  display: none;
}

.pretty.p-has-indeterminate input[type="checkbox"]:indeterminate ~ .state.p-is-indeterminate {
  display: block;
}

.pretty.p-has-indeterminate input[type="checkbox"]:indeterminate ~ .state.p-is-indeterminate .icon {
  opacity: 1;
  display: block;
}

.pretty.p-toggle .state.p-on {
  opacity: 0;
  display: none;
}

.pretty.p-toggle .state .icon, .pretty.p-toggle .state .svg, .pretty.p-toggle .state img, .pretty.p-toggle .state.p-off {
  opacity: 1;
  display: inherit;
}

.pretty.p-toggle .state.p-off .icon {
  color: #bdc3c7;
}

.pretty.p-toggle input:checked ~ .state.p-on {
  opacity: 1;
  display: inherit;
}

.pretty.p-toggle input:checked ~ .state.p-off {
  opacity: 0;
  display: none;
}

.pretty.p-plain input:checked ~ .state label:before, .pretty.p-plain.p-toggle .state label:before {
  content: none;
}

.pretty.p-plain.p-plain .icon {
  transform: scale(1.1);
}

.pretty.p-round .state label:after, .pretty.p-round .state label:before {
  border-radius: 100%;
}

.pretty.p-round.p-icon .state .icon {
  border-radius: 100%;
  overflow: hidden;
}

.pretty.p-round.p-icon .state .icon:before {
  transform: scale(.8);
}

.pretty.p-curve .state label:after, .pretty.p-curve .state label:before {
  border-radius: 20%;
}

.pretty.p-smooth .icon, .pretty.p-smooth .svg, .pretty.p-smooth label:after, .pretty.p-smooth label:before {
  -o-transition: all .5s ease;
  transition: all .5s;
}

.pretty.p-smooth input:checked + .state label:after {
  -o-transition: all .3s ease;
  transition: all .3s;
}

.pretty.p-smooth input:checked + .state .icon, .pretty.p-smooth input:checked + .state .svg, .pretty.p-smooth input:checked + .state img, .pretty.p-smooth.p-default input:checked + .state label:after {
  animation: .2s zoom;
}

.pretty.p-smooth.p-plain input:checked + .state label:before {
  content: "";
  -o-transition: all .5s ease;
  transition: all .5s;
  transform: scale(0);
}

.pretty.p-tada:not(.p-default) input:checked + .state .icon, .pretty.p-tada:not(.p-default) input:checked + .state .svg, .pretty.p-tada:not(.p-default) input:checked + .state img, .pretty.p-tada:not(.p-default) input:checked + .state label:after, .pretty.p-tada:not(.p-default) input:checked + .state label:before {
  opacity: 1;
  animation: .7s cubic-bezier(.25, .46, .45, .94) alternate tada;
}

.pretty.p-jelly:not(.p-default) input:checked + .state .icon, .pretty.p-jelly:not(.p-default) input:checked + .state .svg, .pretty.p-jelly:not(.p-default) input:checked + .state img, .pretty.p-jelly:not(.p-default) input:checked + .state label:after, .pretty.p-jelly:not(.p-default) input:checked + .state label:before {
  opacity: 1;
  animation: .7s cubic-bezier(.25, .46, .45, .94) jelly;
}

.pretty.p-jelly:not(.p-default) input:checked + .state label:before {
  border-color: rgba(0, 0, 0, 0);
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state .icon, .pretty.p-rotate:not(.p-default) input:checked ~ .state .svg, .pretty.p-rotate:not(.p-default) input:checked ~ .state img, .pretty.p-rotate:not(.p-default) input:checked ~ .state label:after, .pretty.p-rotate:not(.p-default) input:checked ~ .state label:before {
  opacity: 1;
  animation: .7s cubic-bezier(.25, .46, .45, .94) rotate;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before {
  border-color: rgba(0, 0, 0, 0);
}

.pretty.p-pulse:not(.p-switch) input:checked ~ .state label:before {
  animation: 1s pulse;
}

.pretty input[disabled] {
  cursor: not-allowed;
  display: none;
}

.pretty input[disabled] ~ * {
  opacity: .5;
}

.pretty.p-locked input {
  cursor: not-allowed;
  display: none;
}

.pretty input:checked ~ .state.p-primary label:after, .pretty.p-toggle .state.p-primary label:after {
  background-color: #428bca !important;
}

.pretty input:checked ~ .state.p-primary .icon, .pretty input:checked ~ .state.p-primary .svg, .pretty.p-toggle .state.p-primary .icon, .pretty.p-toggle .state.p-primary .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-primary-o label:before, .pretty.p-toggle .state.p-primary-o label:before {
  border-color: #428bca;
}

.pretty input:checked ~ .state.p-primary-o label:after, .pretty.p-toggle .state.p-primary-o label:after {
  background-color: rgba(0, 0, 0, 0);
}

.pretty input:checked ~ .state.p-primary-o .icon, .pretty input:checked ~ .state.p-primary-o .svg, .pretty input:checked ~ .state.p-primary-o svg, .pretty.p-toggle .state.p-primary-o .icon, .pretty.p-toggle .state.p-primary-o .svg, .pretty.p-toggle .state.p-primary-o svg {
  color: #428bca;
  stroke: #428bca;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-primary-o label:after {
  background-color: #428bca !important;
}

.pretty.p-switch input:checked ~ .state.p-primary:before {
  border-color: #428bca;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-primary:before {
  background-color: #428bca !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-primary:before {
  border-color: #245682;
  background-color: #245682 !important;
}

.pretty input:checked ~ .state.p-info label:after, .pretty.p-toggle .state.p-info label:after {
  background-color: #5bc0de !important;
}

.pretty input:checked ~ .state.p-info .icon, .pretty input:checked ~ .state.p-info .svg, .pretty.p-toggle .state.p-info .icon, .pretty.p-toggle .state.p-info .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-info-o label:before, .pretty.p-toggle .state.p-info-o label:before {
  border-color: #5bc0de;
}

.pretty input:checked ~ .state.p-info-o label:after, .pretty.p-toggle .state.p-info-o label:after {
  background-color: rgba(0, 0, 0, 0);
}

.pretty input:checked ~ .state.p-info-o .icon, .pretty input:checked ~ .state.p-info-o .svg, .pretty input:checked ~ .state.p-info-o svg, .pretty.p-toggle .state.p-info-o .icon, .pretty.p-toggle .state.p-info-o .svg, .pretty.p-toggle .state.p-info-o svg {
  color: #5bc0de;
  stroke: #5bc0de;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-info-o label:after {
  background-color: #5bc0de !important;
}

.pretty.p-switch input:checked ~ .state.p-info:before {
  border-color: #5bc0de;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-info:before {
  background-color: #5bc0de !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-info:before {
  border-color: #2390b0;
  background-color: #2390b0 !important;
}

.pretty input:checked ~ .state.p-success label:after, .pretty.p-toggle .state.p-success label:after {
  background-color: #5cb85c !important;
}

.pretty input:checked ~ .state.p-success .icon, .pretty input:checked ~ .state.p-success .svg, .pretty.p-toggle .state.p-success .icon, .pretty.p-toggle .state.p-success .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-success-o label:before, .pretty.p-toggle .state.p-success-o label:before {
  border-color: #5cb85c;
}

.pretty input:checked ~ .state.p-success-o label:after, .pretty.p-toggle .state.p-success-o label:after {
  background-color: rgba(0, 0, 0, 0);
}

.pretty input:checked ~ .state.p-success-o .icon, .pretty input:checked ~ .state.p-success-o .svg, .pretty input:checked ~ .state.p-success-o svg, .pretty.p-toggle .state.p-success-o .icon, .pretty.p-toggle .state.p-success-o .svg, .pretty.p-toggle .state.p-success-o svg {
  color: #5cb85c;
  stroke: #5cb85c;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-success-o label:after {
  background-color: #5cb85c !important;
}

.pretty.p-switch input:checked ~ .state.p-success:before {
  border-color: #5cb85c;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-success:before {
  background-color: #5cb85c !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-success:before {
  border-color: #357935;
  background-color: #357935 !important;
}

.pretty input:checked ~ .state.p-warning label:after, .pretty.p-toggle .state.p-warning label:after {
  background-color: #f0ad4e !important;
}

.pretty input:checked ~ .state.p-warning .icon, .pretty input:checked ~ .state.p-warning .svg, .pretty.p-toggle .state.p-warning .icon, .pretty.p-toggle .state.p-warning .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-warning-o label:before, .pretty.p-toggle .state.p-warning-o label:before {
  border-color: #f0ad4e;
}

.pretty input:checked ~ .state.p-warning-o label:after, .pretty.p-toggle .state.p-warning-o label:after {
  background-color: rgba(0, 0, 0, 0);
}

.pretty input:checked ~ .state.p-warning-o .icon, .pretty input:checked ~ .state.p-warning-o .svg, .pretty input:checked ~ .state.p-warning-o svg, .pretty.p-toggle .state.p-warning-o .icon, .pretty.p-toggle .state.p-warning-o .svg, .pretty.p-toggle .state.p-warning-o svg {
  color: #f0ad4e;
  stroke: #f0ad4e;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-warning-o label:after {
  background-color: #f0ad4e !important;
}

.pretty.p-switch input:checked ~ .state.p-warning:before {
  border-color: #f0ad4e;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-warning:before {
  background-color: #f0ad4e !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-warning:before {
  border-color: #c77c11;
  background-color: #c77c11 !important;
}

.pretty input:checked ~ .state.p-danger label:after, .pretty.p-toggle .state.p-danger label:after {
  background-color: #d9534f !important;
}

.pretty input:checked ~ .state.p-danger .icon, .pretty input:checked ~ .state.p-danger .svg, .pretty.p-toggle .state.p-danger .icon, .pretty.p-toggle .state.p-danger .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-danger-o label:before, .pretty.p-toggle .state.p-danger-o label:before {
  border-color: #d9534f;
}

.pretty input:checked ~ .state.p-danger-o label:after, .pretty.p-toggle .state.p-danger-o label:after {
  background-color: rgba(0, 0, 0, 0);
}

.pretty input:checked ~ .state.p-danger-o .icon, .pretty input:checked ~ .state.p-danger-o .svg, .pretty input:checked ~ .state.p-danger-o svg, .pretty.p-toggle .state.p-danger-o .icon, .pretty.p-toggle .state.p-danger-o .svg, .pretty.p-toggle .state.p-danger-o svg {
  color: #d9534f;
  stroke: #d9534f;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-danger-o label:after {
  background-color: #d9534f !important;
}

.pretty.p-switch input:checked ~ .state.p-danger:before {
  border-color: #d9534f;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-danger:before {
  background-color: #d9534f !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-danger:before {
  border-color: #a02622;
  background-color: #a02622 !important;
}

.pretty.p-bigger .icon, .pretty.p-bigger .img, .pretty.p-bigger .svg, .pretty.p-bigger label:after, .pretty.p-bigger label:before {
  font-size: 1.2em !important;
  top: calc(1em - 135%) !important;
}

.pretty.p-bigger label {
  text-indent: 1.7em;
}

@media print {
  .pretty .state .icon, .pretty .state label:after, .pretty .state label:before, .pretty .state:before {
    color-adjust: exact;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* [project]/src/app/styles/quote/_layout.scss.css [app-client] (css) */
@font-face {
  font-family: Cronos Pro Semibold Caption;
  font-style: normal;
  font-weight: normal;
  src: local(Cronos Pro Semibold Caption), url("/fonts/Cronos-Pro-Semibold-Caption_12450.woff") format("woff");
}

@font-face {
  font-family: Cronos Pro Semibold Display;
  font-style: normal;
  font-weight: normal;
  src: local(Cronos Pro Semibold Display), url("/fonts/Cronos-Pro-Semibold-Display_12452.woff") format("woff");
}

@font-face {
  font-family: Cronos Pro Semibold Subhead;
  font-style: normal;
  font-weight: normal;
  src: local(Cronos Pro Semibold Subhead), url("/fonts/Cronos-Pro-Semibold-Subhead_12455.woff") format("woff");
}

@font-face {
  font-family: Cronos Pro Semibold;
  font-style: normal;
  font-weight: normal;
  src: local(Cronos Pro Semibold), url("/fonts/Cronos-Pro-Semibold_12456.woff") format("woff");
}

@font-face {
  font-family: Cronos Pro Semibold Caption Italic;
  font-style: normal;
  font-weight: normal;
  src: local(Cronos Pro Semibold Caption Italic), url("/fonts/Cronos-Pro-Semibold-Caption-Italic_12449.woff") format("woff");
}

@font-face {
  font-family: Cronos Pro Semibold Display Italic;
  font-style: normal;
  font-weight: normal;
  src: local(Cronos Pro Semibold Display Italic), url("/fonts/Cronos-Pro-Semibold-Display-Italic_12451.woff") format("woff");
}

@font-face {
  font-family: Cronos Pro Semibold Italic;
  font-style: normal;
  font-weight: normal;
  src: local(Cronos Pro Semibold Italic), url("/fonts/Cronos-Pro-Semibold-Italic_12453.woff") format("woff");
}

@font-face {
  font-family: Cronos Pro Semibold Subhead Italic;
  font-style: normal;
  font-weight: normal;
  src: local(Cronos Pro Semibold Subhead Italic), url("/fonts/Cronos-Pro-Semibold-Subhead-Italic_12454.woff") format("woff");
}

.quote-layout-container .bg-orange-600 {
  background: #e77b08;
}

.quote-layout-container .bg-orange-600:hover {
  background: #d2710a !important;
}

.quote-layout-container .ring-orange-500 {
  --tw-ring-color: #e77b08;
}

.quote-layout-container .text-orange-500 {
  color: #e77b08;
}

.quote-layout-container .orange-line-around {
  border-color: #e77b08 !important;
}

.quote-layout-container .quote-container {
  background-color: #f8f9f0;
}

@media screen and (min-width: 0) and (max-width: 1024px) {
  .quote-layout-container .quote-container {
    max-width: 100%;
  }

  .quote-layout-container .quote-container .flex-col-mob {
    flex-direction: column;
  }

  .quote-layout-container .quote-container .desktop-only {
    display: none;
  }

  .quote-layout-container .quote-container .lg\:p-24 {
    flex-direction: column;
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .quote-layout-container .quote-container .counter-container {
    flex-direction: row;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    display: grid;
  }
}

@media screen and (min-width: 0) and (max-width: 1024px) and (max-width: 600px) {
  .quote-layout-container .quote-container .counter-container {
    display: none;
  }
}

@media screen and (min-width: 0) and (max-width: 1024px) {
  .quote-layout-container .quote-container .counter-container .flex, .quote-layout-container .quote-container .counter-container > div {
    justify-content: center;
  }

  .quote-layout-container .quote-container .left-container-wrapper, .quote-layout-container .quote-container .right-container-wrapper {
    width: 100%;
    padding-left: 0;
  }

  .quote-layout-container .quote-container .phone-container.mobile-only {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  .quote-layout-container .quote-container .lg\:p-24 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .quote-layout-container .quote-container .lg\:p-24 h1 {
    margin-top: -40px;
    font-size: 42px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .min-height-right-container {
    min-height: auto;
  }

  .quote-layout-container .quote-container .lg\:p-24 .previous-step {
    text-align: right;
    border-bottom: none;
    max-width: 15%;
    padding-right: 0;
    font-size: 13px;
    display: flex;
    top: -8px;
    justify-content: right !important;
    align-items: center !important;
    right: -4px !important;
  }

  .quote-layout-container .quote-container .lg\:p-24 .step-three-container hr {
    margin-top: -15px;
    margin-bottom: 5px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .step-three-container .flex-col {
    margin-top: 0;
    margin-bottom: 0;
  }

  .quote-layout-container .quote-container .lg\:p-24 .step-three-container .flex-col input {
    margin-top: 30px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .step4-previous-step {
    text-align: right;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
    top: 25px;
    right: 10px !important;
  }

  .quote-layout-container .quote-container .lg\:p-24 .frequency-header, .quote-layout-container .quote-container .lg\:p-24 .frequency-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .company-name-input, .quote-layout-container .quote-container .lg\:p-24 .postcode-input {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-layout-container .quote-container .lg\:p-24 .map-pin {
    margin-top: 30px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .postcode-company-header {
    margin-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .note-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .note-section p {
    padding-left: 0 !important;
  }

  .quote-layout-container .quote-container .lg\:p-24 .service-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .service-header.step3-bulky, .quote-layout-container .quote-container .lg\:p-24 .service-header.step3-commercial {
    padding-left: 15px;
    position: relative;
  }

  .quote-layout-container .quote-container .lg\:p-24 .service-header.step3-bulky .previous-step, .quote-layout-container .quote-container .lg\:p-24 .service-header.step3-commercial .previous-step, .quote-layout-container .quote-container .lg\:p-24 .step3-bulky .previous-step, .quote-layout-container .quote-container .lg\:p-24 .step3-commercial .previous-step {
    padding-right: 0;
    right: -5px !important;
  }

  .quote-layout-container .quote-container .lg\:p-24 .step-five-form {
    padding-left: 15px;
    padding-right: 15px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .step-five-form .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .quote-layout-container .quote-container .lg\:p-24 .step-five-form .grid .flex-col {
    margin-bottom: 50px;
    display: block;
  }

  .quote-layout-container .quote-container .lg\:p-24 .step-one-container > div, .quote-layout-container .quote-container .lg\:p-24 .step-one-container p, .quote-layout-container .quote-container .lg\:p-24 .step-two-container > div, .quote-layout-container .quote-container .lg\:p-24 .step-two-container p, .quote-layout-container .quote-container .lg\:p-24 .step-three-container > div, .quote-layout-container .quote-container .lg\:p-24 .step-three-container p {
    padding-left: 15px;
    padding-right: 15px;
  }

  .quote-layout-container .quote-container .lg\:p-24 .step-one-container button, .quote-layout-container .quote-container .lg\:p-24 .step-two-container button, .quote-layout-container .quote-container .lg\:p-24 .step-three-container button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .quote-layout-container .quote-container .lg\:p-24 .step-one-container button span, .quote-layout-container .quote-container .lg\:p-24 .step-two-container button span, .quote-layout-container .quote-container .lg\:p-24 .step-three-container button span {
    text-align: center;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1249px) {
  .quote-layout-container .quote-container {
    max-width: 100%;
  }

  .quote-layout-container .quote-container .lg\:p-24 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (min-width: 1250px) {
  .quote-layout-container .quote-container {
    max-width: 87%;
  }

  .quote-layout-container .quote-container .lg\:p-24 {
    padding-left: 75px;
    padding-right: 75px;
  }
}

@media screen and (min-width: 1025px) {
  .quote-layout-container .quote-container .mobile-only {
    display: none;
  }
}

@media screen and (min-width: 1500px) {
  .quote-layout-container .quote-container {
    max-width: 1250px;
  }
}

.quote-layout-container .bulky-grid {
  margin-bottom: 100px;
}

@media screen and (max-width: 600px) {
  .quote-layout-container .bulky-grid {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 330px) {
  .quote-layout-container .step-two-container .grid button svg {
    max-width: 20px;
  }

  .quote-layout-container .step-two-container .grid button span {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
  .quote-layout-container .parent-container {
    padding-top: 0;
  }

  .quote-layout-container .service-header h2 {
    padding-right: 10px;
  }

  .quote-layout-container .selection-text {
    font-size: 50px;
  }

  .quote-layout-container .postcode-container, .quote-layout-container .company-name-container {
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .quote-layout-container .quote-container {
    margin-top: -25px;
  }

  .quote-layout-container .selection-text {
    margin-bottom: 25px;
    position: relative;
    top: -10px;
  }

  .quote-layout-container .top-message-container {
    padding-top: 0;
  }

  .quote-layout-container .mobile-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-layout-container .step-one-container .service-header, .quote-layout-container .step-four-container .service-header {
    padding-bottom: 20px;
  }

  .quote-layout-container .step-three-container input {
    margin-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-layout-container .step-three-container .postcode-company-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-layout-container .step-two-container .service-header, .quote-layout-container .step-four-container .service-header {
    padding-bottom: 20px;
  }

  .quote-layout-container .step-two-container .grid, .quote-layout-container .step-two-container .top-text, .quote-layout-container .step-four-container .grid, .quote-layout-container .step-four-container .top-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-layout-container .step-two-container .grid-cols-2, .quote-layout-container .step-four-container .grid-cols-2 {
    grid-template-columns: auto;
  }

  .quote-layout-container .step-two-container .grid-cols-2 button, .quote-layout-container .step-four-container .grid-cols-2 button {
    min-height: 60px;
  }

  .quote-layout-container .step-two-container .grid-cols-2 button svg, .quote-layout-container .step-four-container .grid-cols-2 button svg {
    max-width: 30px;
  }

  .quote-layout-container .step-two-container .grid-cols-2 button span, .quote-layout-container .step-four-container .grid-cols-2 button span {
    font-size: 14px;
  }

  .quote-layout-container .step-five-container form .grid-cols-2 {
    grid-template-columns: auto;
  }

  .quote-layout-container .step-five-container form .grid-cols-2 button {
    min-height: 60px;
  }

  .quote-layout-container .step-five-container form .grid-cols-2 button svg {
    max-width: 30px;
  }

  .quote-layout-container .step-five-container form .grid-cols-2 button span {
    font-size: 14px;
  }

  .quote-layout-container .step-five-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-layout-container .note-section {
    padding-block: initial;
    padding: 20px;
  }

  .quote-layout-container .note-section .text-white {
    margin-right: 10px;
    position: relative;
    left: 0;
  }
}

.quote-layout-container .weekly {
  position: relative;
}

.quote-layout-container .weekly:after {
  content: "Most Popular";
  color: #fff;
  background-color: #013426;
  border: 1px solid #013426;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
  width: 85px;
  height: 25px;
  padding-top: 2px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 600px) {
  .quote-layout-container .weekly:after {
    width: 75px;
    height: 19px;
    font-size: 9px;
  }
}

@media screen and (min-width: 601px) and (max-width: 1499px) {
  .quote-layout-container .weekly:after {
    width: 75px;
    height: 20px;
    font-size: 10px;
  }
}

.quote-layout-container .step-three-container {
  position: relative;
}

.quote-layout-container .step-three-container .previous-step {
  position: absolute;
  top: 20px;
  right: 35px;
}

.quote-layout-container .spline-sans {
  font-family: Spline Sans, sans-serif;
}

.quote-layout-container h1, .quote-layout-container h2, .quote-layout-container h3, .quote-layout-container h4, .quote-layout-container h5, .quote-layout-container h6 {
  font-family: Cronos Pro, serif;
}

.quote-layout-container h3 {
  letter-spacing: -.1px;
  font-family: Spline Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.quote-layout-container p {
  font-family: Spline Sans, sans-serif;
}

.quote-layout-container h1 {
  color: #013426;
  font-family: Cronos Pro Semibold Display, serif;
  font-size: 64px;
  font-weight: 600;
}

@media screen and (min-width: 1025px) and (max-width: 1249px) {
  .quote-layout-container .step4-previous-step {
    text-align: right;
    font-size: 13px;
    right: 10px !important;
  }
}

.quote-layout-container .phone-container {
  border-color: #b0eac1;
}

.quote-layout-container .min-height-right-container {
  min-height: 537px;
}

.quote-layout-container .previous-step {
  color: #e77b08;
  cursor: pointer;
  border-bottom: 1px solid #e77b08;
  width: 100px;
  max-width: 150px;
  padding-right: 0;
  font-weight: 500;
  position: relative;
  top: -5px;
  right: 50px;
}

@media screen and (min-width: 1024px) and (max-width: 1249px) {
  .quote-layout-container .previous-step {
    text-align: right;
    border-bottom: none;
    padding-right: 15px;
    font-size: 14px;
    right: 15px;
  }
}

@media screen and (max-width: 600px) {
  .quote-layout-container .previous-step {
    border-bottom: none;
    width: auto;
    max-width: 50px;
    font-size: 14px;
    text-decoration: underline;
    right: 15px;
  }
}

.quote-layout-container .previous-step:hover {
  transform: scale(1.05);
}

.quote-layout-container .final-previous-step {
  right: 0;
}

.quote-layout-container .bg-green-900 {
  background-color: #013426 !important;
}

.quote-layout-container .text-gray-700 {
  color: #013426 !important;
}

.quote-layout-container .text-green-700 {
  color: #0f712c !important;
}

.quote-layout-container .text-gray-400 {
  opacity: .25;
  color: #013426 !important;
}

.quote-layout-container .bg-green-primary {
  background: #0f712c;
}

.quote-layout-container .text-off-white {
  color: #f8f9ef;
}

.quote-layout-container .service-header {
  background: #1e813c;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 60px;
  padding-bottom: 30px;
  padding-left: 40px;
}

.quote-layout-container .service-header h2 {
  font-family: Spline Sans, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

@media screen and (max-width: 601px) {
  .quote-layout-container .service-header {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 10px;
  }
}

.quote-layout-container .bg-gray-300 {
  opacity: .25;
  color: #fff !important;
  background-color: #013426 !important;
}

.quote-layout-container .square-full {
  border-radius: 10px;
  margin-top: 5px;
}

.quote-layout-container .square-full:before {
  content: "";
  background-color: #d1d5dc;
  width: 2px;
  height: 12px;
  position: relative;
  top: -29px;
  left: 7px;
}

.quote-layout-container .square-full:after {
  content: "";
  background-color: #d1d5dc;
  width: 2px;
  height: 12px;
  position: relative;
  bottom: -30px;
  left: -4px;
}

@media screen and (max-width: 1024px) {
  .quote-layout-container .square-full {
    margin-top: -20px;
    padding-left: 4px;
  }

  .quote-layout-container .square-full:before {
    visibility: hidden;
    width: 8px;
    height: 2px;
    top: 0;
    left: 38px;
  }

  .quote-layout-container .square-full:after {
    bottom: unset;
    visibility: hidden;
    width: 12px;
    height: 2px;
    left: 30px;
  }
}

.quote-layout-container .square-full.bg-green-700:before, .quote-layout-container .square-full.bg-green-700:after {
  background-color: #0f712c;
}

.quote-layout-container .square-full.step-1:before, .quote-layout-container .square-full.step-5:after {
  visibility: hidden;
}

.quote-layout-container .privacy-notice, .quote-layout-container .marketing-notice {
  color: #b0eac1;
  font-size: 15px;
}

@media screen and (max-width: 345px) {
  .quote-layout-container .company-name-input, .quote-layout-container .postcode-input {
    font-size: 14px !important;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .quote-layout-container .company-name-input, .quote-layout-container .postcode-input {
    width: 85%;
  }
}

@media screen and (max-width: 345px) {
  .quote-layout-container .note-section .text-white.text-md {
    font-size: 12px !important;
  }

  .quote-layout-container .previous-step {
    right: 10px !important;
  }
}

body {
  background-color: #f8f9f0;
}

/*# sourceMappingURL=_d5d742cb._.css.map*/