@charset "utf-8";
/* Mr. Steam order-form.css
/* Version 43
/* Date: 07/09/2026

/* =========================================
   TABLE OF CONTENTS
   01. GLOBAL TWEAKS
   02. UTILITIES & ANIMATIONS
   03. ZIP CODE VALIDATOR
   04. PROGRESS BAR
   05. MODALS & TOOLTIPS
   06. SERVICES & UI COMPONENTS
   07. GRAVITY FORMS: CORE STYLES
   08. GRAVITY FORMS: RADIO & CHECKBOX GRIDS
   09. GRAVITY FORMS: PAGINATION & FOOTER
   10. GRAVITY FORMS: SPECIFIC FIELDS
   11. REVIEW & CONFIRMATION PAGE
   ========================================= */

   /* =========================================
   00. CONFIGURATION: HIDDEN SERVICES
   ========================================= 
   To hide a service, add its ID below. 
   To show it again, comment it out or delete it. */

#service-pressure-washing {
    display: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================
   01. GLOBAL TWEAKS
   ========================================= */
body {
  overflow-y: scroll;
}

#header-top-message {
  display: none !important;
}

.et_pb_text_0_tb_header.et_pb_text .prices-button {
  display: none !important;
}

footer,
#main-footer,
#prices-button {
  display: none !important;
}

#order-form {
  display: none;
  font-family: Lato, sans-serif !important;
  font-size: 16px;
  color: #666666;
}

#gform_page_67_1 #order-form {
  display: block;
}

.order-form-header h4 {
  color: #777777;
}

/* =========================================
   02. UTILITIES & ANIMATIONS
   ========================================= */
i.rotate {
  -moz-transition: all 0.9s ease-in-out;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  caret-color: transparent;
}

i.rotate.down {
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  caret-color: transparent;
  color: #cccccc;
}

#loading-spinner {
  display: none;
}

#loading-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading {
  width: 50px;
  height: 50px;
  border: 15px solid rgba(0, 0, 0, .2);
  border-radius: 50%;
  border-top-color: #E3005D;
  animation: spin 1s ease-in-out infinite;
  z-index: 9;
  bottom: 0;
  position: absolute;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================
   03. ZIP CODE VALIDATOR
   ========================================= */
@media all and (min-width: 981px) {
  body.zip-code-valid #mr-steam-logo img {
    transform-origin: left top;
    animation: scale 500ms ease-in-out forwards;
  }

  @keyframes scale {
    to {
      transform: scale(.5);
    }
  }

  body.zip-code-valid #mr-steam-logo {
    height: 50px;
  }
}

#zip-code-validator {
  width: 150px;
  padding: 12px !important;
  line-height: 36px !important;
  background: rgba(0, 133, 196, .2);
  border: none !important;
  font-size: 18px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.zip-warning {
  background: #ffb6e1 !important;
  color: #000000 !important;
  padding: 15px;
}

.zip-good {
  background: #9DF781 !important;
  color: #000000 !important;
  padding: 15px;
}

/* =========================================
   FIX: ZIP CODE BUTTON DISABLED STATE
   ========================================= */
#zipBtn:disabled {
    background-color: rgb(223, 223, 223) !important;
    color: #ffffff !important; /* Keeps the word "Continue" readable */
    cursor: not-allowed !important; /* Shows a "stop" icon on hover */
}

#zipBtn:not(:disabled) {
    cursor: pointer !important;
}

/* =========================================
   04. PROGRESS BAR
   ========================================= */
.progressbar {
  padding: 0 !important;
  margin: 0 !important;
  max-height: 3.125rem;
  line-height: 1 !important;
  list-style: none;
  overflow: hidden;
  counter-reset: index;
}

.progressbar .progressbar-step:before {
  counter-increment: index;
  content: counter(index);
}

.progressbar-step {
  float: left;
  position: relative;
  padding: 1.0625rem 1.25rem;
  width: 25%;
  height: 3.125rem;
  background-color: #f3f3f3;
  border-radius: .375rem;
  color: rgba(74, 74, 74, .5);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: width ease-in 125ms;
}

.progressbar-step:not(:first-child) {
  padding-left: 1.45rem;
}

.progressbar-step+.progressbar-step {
  border-radius: 0 .375rem .375rem 0;
}

/* THE FIX: Added .active to share the blue background and white text */
.progressbar-step.is-complete,
.progressbar-step.active {
  background-color: #0085c4;
  color: #fff;
}

.progressbar-step.is-complete {
  cursor: pointer;
}

.progressbar-step:before {
  content: '';
  position: relative;
  padding: .266rem .65rem;
  margin-right: .65rem;
  background-color: #dfdfdf;
  border-radius: .188rem;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
  z-index: 2;
  line-height: 1;
}

/* THE FIX: Added .active to light up the number bubble */
.progressbar-step.is-complete:before,
.progressbar-step.active:before {
  background-color: #e3005d;
}

.progressbar-step:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%) scaleX(.4) rotate(45deg);
  width: 2.75rem;
  height: 2.75rem;
  background-color: inherit;
  box-shadow: .5rem -.5rem 0 0 #fff;
  z-index: 1;
}

.progressbar-step:last-child:after {
  display: none;
}

.progressbar-step .progressbar-link>span,
.progressbar-step>span {
  position: relative;
  z-index: 3;
}

.progressbar-link {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  text-align: left;
  line-height: 1;
  color: #ffffff;
}

.progressbar--3 .progressbar-step {
  width: 33.33333%;
}

@media screen and (max-width:45rem) {
  .progressbar-step {
    width: 16.66667%;
    transition: width ease-out 250ms;
    padding-left: .65rem;
  }

  .progressbar-step:not(:first-child) {
    padding-left: 1.25rem;
  }

  .progressbar-step:not(.active)>.progressbar-link,
  .progressbar-step:not(.active)>span {
    display: none;
  }

  .progressbar-step.active {
    width: 50%;
  }

  .progressbar-step:before {
    margin-right: .438rem;
  }

  .progressbar-step:after {
    right: -2rem;
    width: 4.75rem;
    height: 4.75rem;
    transform: translateY(-50%) scaleX(.24) rotate(45deg);
  }

  .progressbar--3 .progressbar-step {
    width: 16.66667%;
  }

  .progressbar--3 .progressbar-step.active {
    width: 66.66667%;
  }
}

@media screen and (max-width:30rem) {

  .progressbar-step:nth-child(3) .mobilehide,
  .progressbar-step:nth-child(4) .mobilehide {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (max-width:25rem) {
  .progressbar-step:last-child {
    padding-left: 5%;
  }
}

@media screen and (max-width:22.5rem) {
  .progressbar-step {
    padding-left: .65rem;
  }

  .progressbar-step:not(:first-child) {
    padding-left: 6%;
  }

  .progressbar-step:before {
    margin-right: .238rem;
    padding: .125rem .5rem;
    background-color: transparent;
  }

  .progressbar-step:nth-child(1) .mobilehide {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (max-width:18.75rem) {
  .progressbar-step:nth-child(2) .mobilehide {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (min-width:45rem) and (max-width:60rem) {

  .progressbar-step:nth-child(1) .mobilehide,
  .progressbar-step:nth-child(3) .mobilehide,
  .progressbar-step:nth-child(4) .mobilehide {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

/* =========================================
   FIX: HIDE PROGRESS BAR ON CONFIRMATION
   ========================================= */
body:has(.gform_confirmation_wrapper) #progress-bar-row {
    display: none !important;
}

/* =========================================
   05. CINEMATIC PAGE DISSOLVE (FIXED)
   ========================================= */
@keyframes dissolvePage {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Target ONLY the form fields container, completely ignoring the footer */
#gform_wrapper_67 .gform_page_fields {
  animation: dissolvePage 0.4s ease-out forwards !important;
}

/* =========================================
   06. MODALS & TOOLTIPS
   ========================================= */
.modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 133, 196, 0.6);
}

.modal-content {
  position: fixed;
  bottom: 75px;
  /* Safely clears the 67px footer with an 8px gap */
  padding: 20px 0;
  background-color: #eeeeee;
  color: #666666;
  font-size: 16px;
  line-height: 2em;
  width: 90%;
  z-index: 9999999;
  text-align: center;
}

@media only screen and (min-width: 640px) {
  .modal-content {
    width: 350px !important;
  }
}

.modal-body {
  padding: 2px 30px;
}

.modal-content input[type=checkbox],
.modal-content input[type=radio] {
  transform: scale(1.8);
  margin-right: 10px;
}

#minimum-charge-modal,
#parking_type {
  display: none;
}

.modal-footer {
  padding-top: 10px;
  background-color: #eeeeee;
}

@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.tooltip-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
}

.tooltip {
  position: relative;
  padding-right: 10%;
  font-size: 15px !important;
  color: #999999 !important;
  display: inline-block;
  line-height: 1.2em;
}

.tooltip .title {
  width: 200px;
  background-color: #ffffff;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 20px;
  position: absolute;
  z-index: 1;
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.tooltip.top .title {
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip.top .title::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 24%;
  margin-top: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

.tooltip.top.left .title {
  bottom: 100%;
  left: 50%;
  margin-left: -150px;
}

.tooltip.top.left .title::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 75%;
  margin-top: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

@media only screen and (min-width: 641px) and (max-width: 979px) {
  .tooltip.top.pet .title {
    bottom: 100%;
    left: 50%;
    margin-left: -150px;
  }

  .tooltip.top.pet .title::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 75%;
    margin-top: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent white;
  }
}

.tooltip.right .title {
  top: -20px;
  left: 110%;
}

.mobile-service-title .tooltip.right .title {
  left: 75%;
  width: 150px;
}

.tooltip.right .title::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent white transparent transparent;
}

.icon::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.tooltip .title::before {
  font: var(--fa-font-solid);
  content: "\f2d3";
  font-size: 16px;
  color: #000000;
  position: absolute;
  top: 5px;
  right: 8px;
}

/* Tooltip Image for Sofas */
.tooltip-image i {
  padding-left: 5px;
  font-size: 15px !important;
  color: #999999 !important;
}

.tooltip-image span {
  display: none;
}

.tooltip-image.open span {
  display: block;
  position: absolute;
}

.tooltip-image.open span img {
  position: relative;
  top: -200px;
  left: 140px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding-top: 20px;
  background: white;
}

.tooltip-image.open::after {
  content: "";
  position: relative;
  top: 100%;
  left: -2%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

.tooltip-image.open span::before {
  font: var(--fa-font-solid);
  content: "\f2d3";
  font-size: 16px;
  color: #000000;
  position: absolute;
  top: -193px;
  right: -133px;
  z-index: 9;
}

/* =========================================
   07. SERVICES & UI COMPONENTS
   ========================================= */
.btn {
  color: #777777;
  background-color: #ffffff;
  border: solid 1px #d8d8d8;
}

.btn-off,
.btn-off:hover {
  cursor: not-allowed;
  pointer-events: none;
}

.service-category-title {
  padding: 10px 15px;
  background: #f3f3f3;
  font-size: 24px;
  color: #0085c4;
}

.service-category-title.show {
  color: #ffffff;
  background-color: #0085c4;
  transition: background-color 1s ease;
}

.service-category-title span:first-child {
  padding-right: 10px;
}

.service-category-title i.tooltip {
  padding-left: 10px;
}

.service-category-title .category-btn {
  float: right;
  padding-right: 10px;
}

.show-hide-category {
  display: none;
}

/* Apply to all wrappers */
.service-category-wrapper {
  border-bottom: solid 3px #eaeaea !important;
  margin-bottom: 7px !important;
}

/* Remove from the dynamically assigned last visible, and explicitly hidden ones */
.service-category-wrapper.last-visible,
.service-category-wrapper[style*="display: none"] {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

.subcategory-title {
  padding: 10px 15px;
  font-size: 18px;
  background-color: #0085c4;
  color: #ffffff;
}

.service-notes {
  font-size: 14px;
  padding: 5px 0 0 15px;
  background: #efefef;
  line-height: 1.8em
}

.service-notes i {
  color: #aaaaaa;
}

i.show-hide-btn,
.show-hide-btn i {
  color: #999999;
  font-size: 24px;
}

.show i {
  color: #dddddd !important;
}

.service-name,
.protect-name,
.deodorize-name,
.pet-name {
  flex-grow: 1;
  font-size: 18px;
  color: #0085c4;
}

.service-qty {
  display: flex;
}

.service-qty .number-minus,
.service-qty .number-plus,
.service-qty input {
  text-align: center;
  border: .05em solid #ddd;
}

.service-qty input {
  cursor: not-allowed;
  background: #d8d8d8;
  color: #000000 !important;
}

.service-qty input:disabled {
  background: #eeeeee !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000;
  opacity: 1;
}

@media only screen and (min-width: 100px) and (max-width: 639px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-service-title {
    background: #e0e0e0;
    padding: 10px 10px 10px 15px;
    border: 1px solid #f0f5ff;
    font-size: 18px;
  }

  .mobile-service-title.show {
    background-color: #c0c0c0;
    color: #ffffff;
    transition: background-color 1s ease;
  }

  .mobile-service-title i.tooltip {
    padding-left: 10px;
  }

  .mobile-service-title .service-title-btn {
    float: right;
    padding-right: 10px;
  }

  .mobile-service-title i.rotate.down {
    color: #777777;
  }

  .service-wrapper {
    margin-bottom: 5px;
  }

  .service,
  .protect-qty,
  .deodorize-qty,
  .pet-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    padding: 5px 15px !important;
    border: 1px solid #f0f5ff;
  }

  .service-qty input,
  .service-qty .btn {
    height: 40px;
    font-size: 18px;
    border: 0.05em solid #dddddd;
  }

  .service-qty .btn {
    width: 40px;
  }

  .service-qty input {
    width: 50px;
  }

  .btn i.fa-minus,
  .btn i.fa-plus {
    line-height: 40px;
  }

  .svg-inline--fa {
    vertical-align: -25% !important;
  }

  .rug-length-grid,
  .rug-width-grid {
    width: 86% !important;
  }
}

@media only screen and (min-width: 640px) {
  .mobile-only {
    display: none !important;
  }

  .service-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    padding: 10px 0 10px 15px;
    border-bottom: .07em solid #dedede;
  }

  .desktop-services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
  }

  .service,
  .service-qty,
  .protect-qty,
  .deodorize-qty,
  .pet-qty,
  .desktop-services-header .header-item {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
  }

  .service-qty,
  .protect-qty,
  .deodorize-qty,
  .pet-qty,
  .service-category-services .header-item {
    flex-basis: 110px;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 14px !important;
  }

  .service,
  .service-category-services .header-space {
    flex-grow: 1;
  }

  .service-name {
    line-height: 1.1em;
  }

  .service-qty input,
  .btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    border: 0.05em solid #dddddd;
  }

  .btn i.fa-minus,
  .btn i.fa-plus {
    line-height: 30px;
  }

  .rug-length-grid,
  .rug-width-grid {
    width: 70% !important;
  }
}

/* Area Rug Grid */
.area-rug-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-flow: row;
  grid-template-areas:
    "rug-size-title-grid rug-size-title-grid rug-fiber-title-grid rug-fiber-title-grid"
    "rug-length-grid rug-width-grid rug-fiber-form-grid rug-fiber-form-grid";
  padding: 10px 5px;
  place-items: center;
  background: #eeeeee;
  font-size: 18px;
  line-height: 1.5em;
}

.rug-size-title-grid {
  grid-area: rug-size-title-grid;
  color: #0085c4;
}

.rug-length-grid {
  grid-area: rug-length-grid;
  text-align: center;
  background-color: #dddddd;
  border-radius: 15px 0 0 15px;
  padding: 5px 0px 10px 10px;
  justify-self: end;
}

.rug-width-grid {
  grid-area: rug-width-grid;
  text-align: center;
  background-color: #dddddd;
  border-radius: 0 15px 15px 0;
  padding: 5px 10px 10px 0px;
  justify-self: start;
  width: 70%;
}

.rug-fiber-title-grid {
  grid-area: rug-fiber-title-grid;
  color: #0085c4;
}

.rug-fiber-form-grid {
  place-items: left;
  grid-area: rug-fiber-form-grid;
  justify-self: center;
}

.rug-fiber-form-grid .rug-fiber-form {
  background-color: #dddddd;
  border-radius: 15px;
  padding: 5px 15px;
}

div.add-rug-btn {
  background-color: #edeeee;
  border: 1px solid #dddddd;
  width: 100%;
  padding: 10px 15px;
  height: 44px;
}

div.add-rug-btn.hidden {
  display: none;
}

.rug-fiber-form .tooltip {
  padding-right: 0;
}

.area-rug-grid .size-input {
  font-size: 18px;
  text-align: center;
  width: 60px;
  border: none;
}

.rug-name-text {
  display: none;
}

/* =========================================
   08. GRAVITY FORMS: CORE STYLES
   ========================================= */
div.gform_heading {
  display: none;
}

div.gfield_description {
  line-height: 1.2em;
}

.gform_wrapper,
.gform_confirmation_message {
  color: #777777;
}

.gfield_validation_message:before {
  content: '\f35b';
  font-family: "Font Awesome 5 Free";
  font-style: normal !important;
  font-weight: normal !important;
  font-size: 15px !important;
  color: #e3005d !important;
  margin-right: 5px;
}

.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
  background: none !important;
  border: none !important;
  font-size: 15px !important;
  margin-top: 0px !important;
  padding: 0 !important;
  color: #e3005d !important;
}

.gform_wrapper .gform_validation_errors>h2 {
  color: #e3005d !important;
  font-size: 15px !important;
  line-height: 16px !important;
  padding-bottom: 0px !important;
  margin: 0 !important;
}

.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  font-size: 18px !important;
  padding: 12px !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

input.text,
input.title,
input[type=email],
input[type=password],
input[type=tel],
input[type=text],
select,
textarea {
  background-color: rgba(0, 133, 196, .2) !important;
  border: none !important;
  padding: 2px !important;
  color: #444444 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  background-color: rgba(0, 133, 196, .2) !important;
  border: none !important;
  padding: 2px !important;
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* Datepicker */
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header select.ui-datepicker-month,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header select.ui-datepicker-year {
  padding: 0 22px 0 0 !important;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default {
  align-items: center !important;
  background: #f2f3f5 !important;
  border: 1px solid rgba(32, 32, 46, .079) !important;
  border-radius: 100% !important;
  box-shadow: none !important;
  color: #586e77 !important;
  cursor: text !important;
  display: flex !important;
  height: 40px !important;
  justify-content: center !important;
  text-decoration: none !important;
  width: 40px !important;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
  align-items: center !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #bbbbbb !important;
  cursor: text !important;
  display: flex !important;
  height: 40px !important;
  justify-content: center !important;
  text-decoration: none !important;
  width: 40px !important;
}

@media (max-width: 640px) {
  .gravity-theme.ui-datepicker {
    max-width: 95%;
  }
}

/* Upload Fields */
.gform_wrapper.gravity-theme .gform_drop_area {
  padding: 5px 5px 0 5px !important;
  background: none !important;
  border: none !important;
  margin-bottom: 0 !important;
}

.upload-photos .gform_wrapper.gravity-theme .gform_drop_area {
  padding: 10px !important;
}

span.gform_fileupload_rules,
span.gform_drop_instructions {
  display: none !important;
}

/* =========================================
   09. GRAVITY FORMS: RADIO & CHECKBOX GRIDS
   ========================================= */
fieldset.radio-button-fieldset .gfield_radio .gchoice .gfield-choice-input,
fieldset.checkbox-button-fieldset .gfield_checkbox .gchoice .gfield-choice-input {
  display: none;
}

fieldset.radio-button-fieldset .gfield_radio,
fieldset.checkbox-button-fieldset .gfield_checkbox {
  display: flex;
  align-items: stretch !important;
  gap: 0 10px;
}

fieldset.radio-button-fieldset.vertical .gfield_radio,
fieldset.checkbox-button-fieldset.vertical .gfield_checkbox {
  display: block;
  margin-bottom: 5px;
}

fieldset.radio-button-fieldset .gfield_radio .gchoice,
fieldset.checkbox-button-fieldset .gfield_checkbox .gchoice {
  flex: 1;
  align-self: stretch;
  text-align: center;
  padding: 1em 5px;
  line-height: 1em;
  border: solid 1px #0085c4;
  background-color: transparent;
  color: #666666;
}

fieldset.radio-button-fieldset.vertical .gfield_radio .gchoice,
fieldset.checkbox-button-fieldset.vertical .gfield_checkbox .gchoice {
  padding: 8px 5px;
  margin-bottom: 8px;
}

fieldset.radio-button-fieldset .gfield_radio .gchoice.chosen,
fieldset.checkbox-button-fieldset .gfield_checkbox .gchoice.chosen {
  background-color: #0085c4;
  color: #ffffff;
}

.gform_wrapper.gravity-theme fieldset.radio-button-fieldset .gfield-choice-input+label,
.gform_wrapper.gravity-theme fieldset.checkbox-button-fieldset .gfield-choice-input+label {
  max-width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gform_wrapper.gravity-theme .gfield_consent_description {
  border: none !important;
  font-size: .8em;
  margin-top: 8px;
  max-height: 138px;
  line-height: 1.5;
  overflow-y: scroll;
  padding: 8px;
  background-color: #fff;
  margin-bottom: 20px;
}

/* =========================================
 10. GRAVITY FORMS: PAGINATION & FOOTER
   ========================================= */
/* =========================================
   MASTER BUTTON STYLING
   ========================================= */
#gform_wrapper_67 .gform_page_footer input[type="button"],
#gform_wrapper_67 .gform_page_footer input[type="submit"],
#gform_wrapper_67 .gform_page_footer .gform_button,
#gform_wrapper_67 .gform_page_footer .gform_previous_button,
#gform_wrapper_67 .gform_page_footer .gform_next_button {
    padding: 10px 20px !important;
    font-size: 17px !important;
    letter-spacing: 1px !important;
    font-family: 'Roboto Condensed', Helvetica, Arial, Lucida, sans-serif !important;
    line-height: 1.2em !important;
    min-height: 44px !important;
    box-sizing: border-box !important;
    background-color: #e3005d !important;
    border: 1px solid #e3005d !important;
    border-radius: 15px !important;
    color: #ffffff !important;
    cursor: pointer;
    transition: background 0.3s;
    margin: 0 !important;
    align-self: center !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

#gform_wrapper_67 .gform_page_footer input[type="button"]:hover,
#gform_wrapper_67 .gform_page_footer input[type="submit"]:hover {
    background-color: #c0004e !important;
}

@media screen and (max-width: 480px) {
    #gform_wrapper_67 .gform_page_footer input[type="button"],
    #gform_wrapper_67 .gform_page_footer input[type="submit"],
    #gform_wrapper_67 .gform_page_footer .gform_button,
    #gform_wrapper_67 .gform_page_footer .gform_previous_button,
    #gform_wrapper_67 .gform_page_footer .gform_next_button {
        padding: 8px 12px !important; 
        font-size: 15px !important; 
        min-height: 40px !important;
    }
}

#gform_page_67_1 { visibility: hidden !important; height: 0 !important; }
#gform_wrapper_67.is-page-1 .gform_page_fields { display: none !important; }
#gform_page_67_2, #gform_page_67_3, #gform_page_67_4 { padding-bottom: 100px; }

/* 1. The Main Footer Container */
#gform_wrapper_67 .gform_page_footer {
    visibility: visible !important;
    min-height: 67px !important;
    height: auto !important;
    margin: 0 !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #0085c4 !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-top: 15px !important;
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px)) !important;
    padding-left: calc(15px + env(safe-area-inset-left, 0px)) !important;
    padding-right: calc(15px + env(safe-area-inset-right, 0px)) !important;
    transition: opacity 0.15s ease-in !important;
}

/* The Inner Wrapper */
.footer-inner-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  justify-content: flex-start;
}

/* Navigation Buttons Flex Wrapper */
#gform_wrapper_67 .footer-buttons-wrapper {
    display: flex !important;
    gap: 10px !important;
    margin-left: auto !important;
    align-items: center !important;
    order: 3 !important;
}

#gform_wrapper_67 .footer-buttons-wrapper .gform_previous_button {
    order: 1 !important;
    margin: 0 !important;
}

#gform_wrapper_67 .footer-buttons-wrapper .gform_next_button,
#gform_wrapper_67 .footer-buttons-wrapper .gform_button,
#gform_wrapper_67 .footer-buttons-wrapper input[type="submit"] {
    order: 2 !important;
    margin: 0 !important;
}

/* 2. The Left Side */
.custom-footer-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 15px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  order: 1 !important;
}

.surcharge-block {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  order: 2 !important;
}

/* Form Body Padding */
#gform_wrapper_67 .gform_body {
  padding-bottom: 140px !important;
}

/* Totals styling */
.total-header { display: flex; align-items: baseline; line-height: 1; margin-bottom: 2px; }
.total-label { font-size: 16px; font-weight: normal; color: #ffffff; margin-right: 15px; }
.custom-clear-link { font-size: 13px; color: #ffffff !important; text-decoration: underline; cursor: pointer; opacity: 0.8; }

.real-total-container #field_67_1 { display: block !important; visibility: visible !important; opacity: 1 !important; }
.real-total-container .gfield { margin: 0 !important; padding: 0 !important; }
.real-total-container .gfield_label { display: none !important; }

#gform_wrapper_67 .real-total-container .ginput_total,
#gform_wrapper_67 .real-total-container .ginput_total span,
#gform_wrapper_67 .real-total-container input {
  font-size: 18px !important; 
  font-weight: bold !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  max-width: 90px !important; 
  width: 100% !important;
}

.custom-surcharge-warning { color: #ffcc00; font-size: 13px; padding-top: 2px; font-weight: bold; line-height: 1.1; margin: 0 !important; }

#gform_wrapper_67 .custom-footer-left,
#gform_wrapper_67 .surcharge-block,
#gform_wrapper_67 .custom-surcharge-warning,
#gform_wrapper_67 .price-amount,
#gform_wrapper_67 .ginput_total,
#gform_wrapper_67 .ginput_total span {
    font-size: 18px !important; 
    color: #ffffff !important;
    line-height: 1.2em !important;
    font-weight: bold !important;
    white-space: nowrap !important;
}

#gform_wrapper_67 .price-amount, #gform_wrapper_67 .ginput_total { opacity: 0.9 !important; }

@media screen and (max-width: 480px) {
    #gform_wrapper_67 .surcharge-block,
    #gform_wrapper_67 .custom-surcharge-warning {
        white-space: normal !important; 
        padding-right: 10px !important; 
    }
}

/* =========================================
   FIX: MOBILE REVIEW TABLE OPTIMIZATION
   ========================================= */
@media screen and (max-width: 980px) {
    #gform_wrapper_67 .gform_review_page table { width: 100% !important; font-size: 14px !important; }
    #gform_wrapper_67 .gform_review_page table th, #gform_wrapper_67 .gform_review_page table td { padding: 10px 4px !important; }
    #gform_wrapper_67 .gform_review_page table th:nth-child(1), #gform_wrapper_67 .gform_review_page table td:nth-child(1) { width: 100%; text-align: left; line-height: 1.3em; }
    #gform_wrapper_67 .gform_review_page table th:nth-child(2), #gform_wrapper_67 .gform_review_page table td:nth-child(2),
    #gform_wrapper_67 .gform_review_page table th:nth-child(3), #gform_wrapper_67 .gform_review_page table td:nth-child(3),
    #gform_wrapper_67 .gform_review_page table th:nth-child(4), #gform_wrapper_67 .gform_review_page table td:nth-child(4) { width: 1%; white-space: nowrap !important; text-align: center; }
}

/* =========================================
   FIX: ANNIHILATE THE GRAVITY FORMS SPINNER
   ========================================= */
#gform_wrapper_67 .gform_ajax_spinner { display: none !important; }
/* =========================================
   FIX: UNIVERSAL SURCHARGE POSITIONING & SIZING
   ========================================= */

/* 1. Ensure wrappers span 100% so there is empty space inside them */
#gform_wrapper_67 .gform_page_footer,
#gform_wrapper_67 .footer-inner-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Anchors everything to the left */
    flex-wrap: nowrap !important;
    
    /* THE FIX: Stretches the container so the spring has room to push */
    width: 100% !important; 
    box-sizing: border-box !important;
}

/* 2. Order elements: Total (1), Surcharge (2) */
#gform_wrapper_67 .custom-footer-left {
    order: 1 !important;
    margin-right: 15px !important; 
    margin-left: 0 !important;
}

#gform_wrapper_67 .surcharge-block,
#gform_wrapper_67 .custom-surcharge-warning {
    order: 2 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* 3. THE LIGHT-TOUCH SPRING: Push buttons to the far right */
#gform_wrapper_67 .gform_previous_button {
    order: 3 !important;
    margin-left: auto !important; /* Pushes the Back button to the right */
}

#gform_wrapper_67 .gform_next_button,
#gform_wrapper_67 .gform_button,
#gform_wrapper_67 input[type="submit"] {
    order: 4 !important;
    margin-left: auto !important; /* Pushes the Next button to the right */
}

/* If BOTH buttons exist, Back gets the spring push, and Next just gets a 10px gap */
#gform_wrapper_67 .gform_previous_button ~ .gform_next_button,
#gform_wrapper_67 .gform_previous_button ~ .gform_button,
#gform_wrapper_67 .gform_previous_button ~ input[type="submit"] {
    margin-left: 10px !important; 
}

/* 4. Font Sizing (Locked to 18px) */
#gform_wrapper_67 .custom-footer-left,
#gform_wrapper_67 .surcharge-block,
#gform_wrapper_67 .custom-surcharge-warning,
#gform_wrapper_67 .price-amount,
#gform_wrapper_67 .ginput_total,
#gform_wrapper_67 .ginput_total span {
    font-size: 18px !important; 
    color: #ffffff !important;
    line-height: 1.2em !important;
    font-weight: bold !important;
    white-space: nowrap !important;
}

/* Keeps the numbers slightly dimmed for visual hierarchy */
#gform_wrapper_67 .price-amount,
#gform_wrapper_67 .ginput_total {
    opacity: 0.9 !important; 
}

/* 5. Mobile Safeties (Text Wrapping) */
@media screen and (max-width: 480px) {
    #gform_wrapper_67 .surcharge-block,
    #gform_wrapper_67 .custom-surcharge-warning {
        white-space: normal !important; 
        padding-right: 10px !important; 
    }
}

/* =========================================
   FIX: ULTIMATE MOBILE & DESKTOP BUTTON ALIGNMENT
   ========================================= */

/* 1. Force the Back button (or Next if alone) to push to the far right edge */
/* The 'body' tag is added to make this the most powerful selector in the file */
body #gform_wrapper_67 .gform_page_footer .footer-inner-wrapper input[type="button"].gform_previous_button {
    margin-left: auto !important;
}

body #gform_wrapper_67 .gform_page_footer .footer-inner-wrapper input[type="button"].gform_next_button,
body #gform_wrapper_67 .gform_page_footer .footer-inner-wrapper input[type="button"].gform_button,
body #gform_wrapper_67 .gform_page_footer .footer-inner-wrapper input[type="submit"] {
    margin-left: auto !important;
}

/* 2. If BOTH buttons exist, Back gets 'auto' push, and Next just gets a 10px gap */
body #gform_wrapper_67 .gform_page_footer .footer-inner-wrapper input[type="button"].gform_previous_button ~ input[type="button"].gform_next_button,
body #gform_wrapper_67 .gform_page_footer .footer-inner-wrapper input[type="button"].gform_previous_button ~ input[type="button"].gform_button,
body #gform_wrapper_67 .gform_page_footer .footer-inner-wrapper input[type="button"].gform_previous_button ~ input[type="submit"] {
    margin-left: 10px !important;
}

/* =========================================
   11. GRAVITY FORMS: SPECIFIC FIELDS
   ========================================= */
/* Hide Fields Replaced by Modals */
#field_67_226,
#field_67_227 {
  display: none !important
}

/* Address Fields */
#input_67_235_3_container {
  flex: 0 0 75% !important;
  /* width: 1px !important; */
}
#input_67_235_4_container {
  display: none !important;
}
#input_67_235_5_container {
  flex: 0 0 25% !important;
  padding-right: 0px !important;
}
#gfield_description_67_238 {
  background: #ddd;
  max-height: 160px;
  padding-bottom: 0;
}

#input_67_238 {
  line-height: 1.3 !important;
  font-size: 15px !important;
  height: 66px;
}

/* Browse / Upload specific tweaks */
#gfield_description_67_274 {
  line-height: 1.3 !important;
  padding-bottom: 0px !important;
}

#field_67_274 label .gfield_description {
  padding-top: 0px !important;
}

#field_67_274 label {
  margin-bottom: 0px !important;
}

#gform_browse_button_67_274 {
  color: #ffffff !important;
  padding: .3em .7em !important;
  font-size: 17px !important;
  background-color: #0085c4 !important;
  border-width: 1px !important;
  border-color: #0085c4 !important;
  border-radius: 15px !important;
  letter-spacing: 1px !important;
  font-family: 'Roboto Condensed', Helvetica, Arial, Lucida, sans-serif !important;
}

.comments-input input {
  height: 130px !important;
}

/* Spot Cleaner Bottle (Page 3) */
.spot-cleaner-bottle {
  line-height: 1;
  padding: 0 !important;
}

div.spot-cleaner-bottle-icon {
  grid-column: span 1 !important;
  align-self: center !important;
}

div.spot-cleaner-bottle-icon svg {
  font-size: 80px !important;
  margin-top: 40px !important;
}

.spot-cleaner-bottle .gfield_description {
  padding-bottom: 8px !important;
}

.spot-cleaner-bottle legend {
  padding-top: 12px !important;
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  div.spot-cleaner-bottle-icon {
    grid-column: 1/2 !important;
  }

  div.spot-cleaner-bottle-icon svg {
    font-size: 100px !important;
    margin-top: 16px !important;
  }

  .spot-cleaner-bottle {
    grid-column: 3/12 !important;
  }
}

/* =========================================
   12. REVIEW & CONFIRMATION PAGE
   ========================================= */
#mr-steam-review-page {
  padding-bottom: 50px;
}

#mr-steam-review-page #review-date-time,
#mr-steam-review-page #review-address,
#mr-steam-review-page #review-total {
  line-height: 1.3em;
  min-height: 32px;
  font-size: 15px !important;
  padding: 14px !important;
  margin-bottom: 10px !important;
  width: 100% !important;
  background-color: #c0dff3 !important;
  border: none !important;
  color: #444444 !important;
  display: flex;
}

#mr-steam-review-page h3 {
  padding: 0 0 10px 0 !important;
}

.entry-content #mr-steam-review-page table:not(.variations) {
  margin: 0 !important;
}

#mr-steam-review-page #pricing-table {
  margin-bottom: 10px !important;
}

#mr-steam-review-page #pricing-table table,
#mr-steam-review-page #pricing-table table table,
#mr-steam-review-page #pricing-table table,
#mr-steam-review-page #pricing-table table table table,
#mr-steam-review-page #pricing-table tr {
  background-color: #c0dff3 !important;
  border: none !important;
  color: #444444 !important;
}

#mr-steam-review-page #pricing-table th,
#mr-steam-review-page #pricing-table th strong,
#mr-steam-review-page #pricing-table td,
#mr-steam-review-page #pricing-table td strong {
  padding: 4px !important;
  background-color: #c0dff3 !important;
  text-align: center !important;
  border: none !important;
  color: #444444 !important;
  font-size: 13px !important;
  font-weight: normal !important;
  line-height: 1.4em !important;
  margin-bottom: 0 !important;
}

#mr-steam-review-page #pricing-table table table table td:first-child,
#mr-steam-review-page #pricing-table table table table th:first-child {
  min-width: 180px !important;
}

#mr-steam-review-page #pricing-table table table table ul {
  display: none !important;
}

#mr-steam-review-page #pricing-table table table table td:nth-child(3),
#mr-steam-review-page #pricing-table table table table th:nth-child(3) {
  display: none !important;
}

#mr-steam-review-page #pricing-table table table tr:nth-of-type(1) {
  display: none;
}

#mr-steam-review-page #pricing-table table table table tr:nth-of-type(1) {
  display: table-row !important;
}

#mr-steam-review-page #pricing-table tfoot {
  display: none !important;
}

a.map-it-link {
  display: none;
}

/* =============================================
   FIX: PAGE 5 ORDER REVIEW COSMETIC REFINEMENTS
   ============================================= */



/* =======================================
   FIX: GRAVITY FORMS DEFAULT CONFIRMATION 
   ======================================= */

/* 1. Target the table cells in the confirmation message */
.gform_confirmation_wrapper table td,
.gform_confirmation_wrapper table th {
    line-height: 1.3em !important; /* Forces a normal, tight line height */
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    vertical-align: top !important; /* Keeps the text aligned cleanly at the top */
}

/* 2. Strip out any extra spacing injected by the theme */
.gform_confirmation_wrapper table td *,
.gform_confirmation_wrapper table th * {
    line-height: 1.3em !important;
    margin-bottom: 0 !important; /* Stops Divi from adding huge gaps between wrapped lines */
    margin-top: 0 !important;
}

/* 3. Ensure the list items (like the 'Standard Room Clean') don't have extra padding */
.gform_confirmation_wrapper table td ul,
.gform_confirmation_wrapper table td li {
    padding-left: 0 !important;
    list-style-type: none !important; /* Removes any accidental bullet points */
}

/* =========================================
   FIX: CONFIRMATION SUMMARY PADDING & SPACING
   ========================================= */

/* 1 & 2. MATCH TOP AND BOTTOM PADDING */
/* This targets the confirmation wrapper (the white box) and adds the missing breathing room */
.gform_confirmation_wrapper,
.gform_confirmation_message {
    padding-top: 20px !important;    /* Adjust this to match your left padding */
    padding-bottom: 20px !important; /* Adjust this to match your left padding */
}

/* 3. FIX THE "TOTAL" LABEL SPACING */
/* Gravity Forms puts "Total" in a table header (th) and the amount in a table cell (td).
   This forces a nice gap between them and cleanly aligns the money to the right. */
.gform_confirmation_wrapper table tfoot th,
.gform_confirmation_wrapper table tr:last-child th {
    padding-right: 20px !important; /* Pushes the dollar amount away from the label */
    text-align: left !important;
}

.gform_confirmation_wrapper table tfoot td,
.gform_confirmation_wrapper table tr:last-child td {
    text-align: right !important; /* Forces the final price to align nicely to the right */
    padding-left: 10px !important;
}

/* Optional: If the white background is actually on the table itself, 
   this ensures the first and last rows don't touch the top/bottom edges. */
.gform_confirmation_wrapper table tr:first-child th,
.gform_confirmation_wrapper table tr:first-child td {
    padding-top: 15px !important; 
}

.gform_confirmation_wrapper table tr:last-child th,
.gform_confirmation_wrapper table tr:last-child td {
    padding-bottom: 15px !important;
}

/* =========================================
   FIX: DATEPICKER COLLISION BUFFER
   ========================================= */
/* Gives the calendar massive room to open downward without hitting the footer and forcing a screen scroll */
#gform_page_67_2 .gform_body {
    padding-bottom: 400px !important; 
}