/* Form style  */
.custom-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.two-colmn-group {
    flex: 1 1 calc(100% - 15px);
}

.two-colmn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
        justify-content: space-between;
} 
.details_name_required {
    margin-bottom: 10px !important;
    display: flex;
    flex-direction: row-reverse;
}
.right-input-field {
    width: 100%;
    margin-bottom: 20px !important;
    border: 1px solid #D0D5DD !important;
    height: 44px;
    padding: 10px 14px !important;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
#productDropdown, #productDropdown2, #productDropdown3 {
    width: 100% !important;
}
label.custom-label {
    display: block;
    color: rgba(12, 43, 72, 1);
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

span.custom-required {
    float: right;
    color: red;
    font-size: 14px;
    margin-right: 10px;
}

p.custom-description {
        width: 49%;
    font-size: 16px;
    line-height: 20px;
    color: rgba(12, 43, 72, 0.8);
}
.custom-form-group {
    text-align: right;
}
.right-input-field option {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgba(102, 112, 133, 1);
  letter-spacing: 0;
}

.custom-button-container {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.custom-submit-btn {
    background-color: #39aae0;
    border: none;
    padding: 20px 30px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.custom-submit-btn:hover {
    background-color: #39aae0;
}

body .custom-form-wrapper #step-1 button.custom-submit-btn,
body .custom-form-wrapper #step-1 button.custom-submit-btn .btn-text {
    color: #ffffff !important;
    font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: normal !important;
    letter-spacing: 0 !important;
}

#viewSelectedBtn,
#viewSelectedBtn:hover,
#viewSelectedBtn:focus,
#viewSelectedBtn:active {
    background-color: #39aae0 !important;
    border-color: #39aae0 !important;
    color: #ffffff !important;
}

#viewSelectedBtn.is-viewing-selected,
#viewSelectedBtn.is-viewing-selected:hover,
#viewSelectedBtn.is-viewing-selected:focus,
#viewSelectedBtn.is-viewing-selected:active {
    background-color: #ffffff !important;
    border-color: #39aae0 !important;
    color: #39aae0 !important;
}

#resultSection {
    margin-top: -41px;
    text-align: left;
    display: block;
    margin-bottom: 20px;
}

#resultSection h3, #resultSection2 h3, #resultSection3 h3 {
    font-size: 20px;
    display: none;
}

#resultSection p, #resultSection2 p, #resultSection3 p {
    font-size: 12px;
    display: none;
} 

.warning {
    color: #0C2B48;
    font-weight: 600;
}

.danger {
    color: #0C2B48;
    font-weight: 600;
}

.success {
    color: #0C2B48;
    font-weight: 600;
}

.product-image {
    max-width: 100%;
    border-radius: 8px;
}


.btn-loader {
  width: 16px;
  height: 16px;
  border: 3px solid #ffffff;
  border-top: 3px solid #00b0f0;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.cta__btn {
    text-align: center;
}
.section_mains .key-takeaways strong{
  font-size: 36px !important;
  line-height: 43px;
  color: rgb(12, 43, 72);
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
}

.section_mains .key-takeaways p{
  font-size: 20px !important;
  line-height: 32px;
  color: rgb(12, 43, 72);
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* result page style */
  .results__show .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
  }
  .product-image img {
      width: 155px !important;
      height: 155px !important;
  }
  .results__show .top-section {
    display: flex;
    padding: 20px;
    gap: 20px;
    align-items: center;
        background: #f2f2f2;
    margin-bottom: 18px;
  }

  .results__show .product-image {
    width: 40%;
  }

  .icon img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px
  }
  
  .results__show .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .results__show .product-info {
    flex: 1;
    color: #1a2a49;
  }

  .results__show .product-info h2 {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 18px;
      line-height: 24px;
      color: rgba(12, 43, 72, 1);
      text-align: left;
  }

  .results__show .bar-section {
    padding: 0 20px 20px 20px;
  }

.results__show .price-bar {
    position: relative;
    height: 20px;
    border-radius: 10px;
    display: flex;
    overflow: visible;
    justify-content: center;
  }

  .results__show .bar-good {
        background-color: #0db14b;
        width: 33.33%;
        border-radius: 40px;
        z-index: 999;
  }

  .results__show .bar-fair {
    background-color: #f8cf21;
    width: 33.33%;
    border-radius: 0px 40px 40px 0px;
    margin-right: -11px;
    margin-left: -6px;
    z-index: 99;
  }

  .results__show .bar-overpay {
    background-color: #e53935;
    width: 33.33%;
    border-radius: 0px 40px 40px 0px;
  }

  .results__show .indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
    background-color: #0a2540;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 99999;
    margin-left: -15px;
  }

  .results__show .labels {
    display: flex;
    justify-content: space-around;
    font-size: 14px;
    margin-top: 6px;
    padding: 0 2px;
  }
  .third_stp__para {
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      font-size: 18px;
      line-height: 32.4px;
      color: #0c2b48;
      text-align: center;
      padding-bottom: 40px !important;
      padding-top: 20px;
    }

  .price_display {
    font-size: 16px !important;
    font-weight: 500 !important;
  }
  .results__show .labels span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: rgba(12, 43, 72, 1);
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .good { color: #0C2B48; }
  .fair { color: #0C2B48; }
  .overpay { color: #0C2B48; }
  .results__show {
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: center;
  }



.pric__result {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #fff;
}
.ready__text {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    color: #fff;
}
.pro__desc {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
    line-height: 32.4px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 18px;
    font-weight: 500;
}
.get__demo__btn {
    color: #ffffff !important;
    border-width: 1px !important;
    border-color: #b3e7f9;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 600 !important;
    background-color: #00aef6;
    padding-top: 10px !important;
    padding-right: 48px !important;
    padding-bottom: 10px !important;
    padding-left: 48px !important;
    font-size: 20px;
    font-weight: 500;
    padding: .3em 1em;
    line-height: 1.7em !important;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all !important;
    transition-property: all !important;
    margin-top: 20px;
}


.two-colmn {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
}
#productImageTag1,#productImageTag2,#productImageTag3 {
    width: 300px;
    height: 200px;
}
#price1,#price2,#price3 {
    width: 100%;
}
.third__price__field {
    display: block !important;
}
.third__price__field input {
    margin-top: 10px;
}

.product-price-entries img {
    width: 222px;
    height: 222px;
}

  .custom-modal {
      display: none;
    position: fixed;
    z-index: 999999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .custom-modal-content {
    background-color: #fff;
    margin: 7% auto;
    padding: 30px;
    border-radius: 10px;
    width: 95%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    overflow-x: auto;
  }

  .custom-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .custom-modal-close:hover { color: #000; }
  img { max-width: 100%; height: auto; }

  #get-demo-form input,
  #get-demo-form button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
  }

  .page-id-4035 .et-l--footer .et_pb_gutters2 {
    z-index: 999;
  }


.custom-required {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  vertical-align: middle;
  color: rgba(255, 0, 0, 1); /* solid red */
}

::placeholder {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  color: rgba(102, 112, 133, 1); /* placeholder color */
}
.pro_name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: rgba(12, 43, 72, 1);
}
.pro_name_required {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}



.custom-submit-btn1 {
    background-color: #39aae0;
    border: none;
    padding: 20px 30px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    max-width: 164px;
}
.custom-submit-btn2 {
    background-color: #39aae0;
    border: none;
    padding: 20px 30px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}
.custom-form-wrapper {
    max-width: 100%;
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-bottom: 0;
    padding: 0;
}

.custom-form-wrapper #pricingForm,
.custom-form-wrapper .form-step {
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-bottom: 0;
    padding-bottom: 0;
}

body .et_pb_code:has(.custom-form-wrapper #step-3:not([hidden])),
body .et_pb_code_inner:has(.custom-form-wrapper #step-3:not([hidden])) {
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}
.section_mains {
      background-color: #fff;
      padding: 66px;
  }
.product-step-title {
  color: rgba(12, 43, 72, 0.8);
  margin-bottom: 15px;
  line-height: 24px;
}


/* Pricing page css */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scroll-row-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.scroll-row {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-row::-webkit-scrollbar {
  display: none;
}

/* Progress Bar */
.scroll-progress-bar {
  height: 14px;
  background: #e6e6e6;
  border-radius: 6px;
  overflow: hidden;
  margin: 6px 0px 0;
}
.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: #00a4e6;
  border-radius: 6px;
  transition: width 0.25s ease;
}

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid #F2F2F2;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  padding: 0px;
}
.product-card.selected {
  background: #ffffff;
  border: 1px solid #0C2B48;
}
.img__cls {
    text-align: center;
    padding: 16px 32px;
    min-height: 263px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.product-card img {
  max-height: 222px;
  width: auto;
  object-fit: contain;
}
.product-title {
    font-size: 18px;
    font-weight: 600;
    background: #f2f2f2;
    padding: 10px;
    text-align: center;
    min-height: 115px;
    border-radius: 0 0 6px 6px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    line-height: 28px;
}
.product-card.selected .product-title {
  background: #0C2B48;
  border-color: #0C2B48;
  color: #fff; 
}

.information_fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.information_fields .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}
.information_fields .form-group .col {
    width: 50%;
}
.information_fields .form-group .col .form-control {
    width: 100%;
    border: 1px solid #D0D5DD !important;
    height: 44px;
    padding: 10px 14px !important;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}



/* rate my price page css */
 

.how_it_works {
	display: flex;
	    gap: 10px;
}
.how-it-work-content p {
	color: #fff;    
	font-size: 12px;
}
.how-it-work-content h3 {
	color: #fff;
	font-size: 22px;
}
.how_it_works .how-it-work-content {
	border: 1px solid #00aef629;
    padding: 15px 15px;
    min-height: 243px;
    border-radius: 10px;
      width: 100%;
    max-width: 33%;
}
.how-it-work-content .nmber {
    border: 2px solid #00aef6;
    padding: 11px 20px;
    border-radius: 10px
}
.how-it-work-content .nmber {
    border: 1px solid #00aef629;
    padding: 11px 20px;
    border-radius: 10px
}


.how_it_workss {
    display: flex;
    gap: 43px;
  justify-content: center;
    align-items: center;
}

.how_it_workss .how-it-work-content {
    border: 1px solid #00aef629;
    padding: 30px;
    min-height: 273px;
    border-radius: 10px;
}


.how_it_workss .how-it-work-content p {
	color: #fff;    
	font-size: 16px;
}



/* Pagination Styles */
.pagination-container {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}





.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #fff;
  border-top: 2px solid #F2F2F2;
  padding: 24px 0 0;
  margin: 24px 0 0;
} 

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 4px;  
  padding: 8px 12px;
  border: 0px solid #e0e0e0;
  background: #fff;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  font-weight: 700; 
}








.product-search-wrap .search-input-box img{
  width: 20px;
  height: 20px;
}
 
.product-search-wrap .search-input-box #productSearch{
  border: none;
    font-size: 16px;
    line-height: 24px;
    width: 100% !important;
}

input#productSearch::placeholder {
  font-size: 16px;
}

.product-search-wrap .search-input-box{
  display: flex;
    column-gap: 5px;
    align-items: center;
    justify-content: space-between;
}

.custom-form-wrapper .product-search-wrap{
  border: 1px solid #D0D5DD;
  padding: 12px 14px;
  border-radius: 8px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  box-shadow: 0 1px 2px 0 #1018280D;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}




.pagination-btn:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #ccc;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-arrow {
  font-size: 16px;
  font-weight: bold;
}

.pagination-text {
  font-size: 14px;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 8px;
}

.pagination-number {
  width: 35px;
  height: 35px;
  border: 0px solid #e0e0e0;
  background: #fff;
  color: #333;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.pagination-number:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.pagination-number.active {
  background: #F9F9F9;
  color: #333;
  font-weight: 600;
}

.pagination-ellipsis {
  color: #666;
  font-size: 14px;
  padding: 0 4px;
}
.price__wrap p {
text-align: center;
font-size: 18px;
font-weight: 500;
padding-bottom: 0px;
margin-bottom: 5px;
}



<!-- Selection bar styles (can be moved to price-style.css) -->

/* --- Current Selection bar --- */
.selected-products-wrapper {
    margin-bottom: 25px;
}
.selected-products-container{
  align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    overflow-x: auto;
    justify-content: flex-start;
}
.selected-products-title{ font-weight:700; color:#0f172a; margin-right:4px; }
.selected-chip{
  display:flex; gap:8px;
  border:1px solid #627488; border-radius:12px;
  background:#627488; box-shadow:0 1px 2px rgba(15,23,42,.06);
  position: relative;
  max-width: 190px;
  flex-wrap: wrap;
  min-width: 190px !important;
  width: 100%;
}
.selected-chip img{
  width: 100%;
    height: 115px;
    object-fit: contain;
    border-radius: 5px !important;
    background: #fff;
    padding: 5px;
    margin: 10px;
 }
.selected-chip .name{ 
    font-size: 16px;
    font-weight: 600;
    background: #0C2B48;
    padding: 10px;
    text-align: center;
    min-height: 125px;
    border-radius: 0 0 6px 6px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    line-height: 24px;
    width: 100%;
    color: #fff;
}
.selected-chip .remove {
    border: 0;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    position: absolute;
    top: -5px;
    right: -5px;
    background: #3aaae0;
    border-radius: 50px;
    width: 18px;
    height: 18px;
    color: #fff;
}
.selected-chip .remove:hover{ color:#0f172a; }
.selected-more{
  padding:6px 10px; border:1px dashed #cbd5e1; border-radius:999px; background:#fff;
  font-size:12px; color:#334155; white-space:nowrap;
}
#current_selection h3 {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
    color: rgba(12, 43, 72, 0.8);
    margin-bottom: 15px;
    line-height: 24px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .pagination {
    padding: 6px 12px;
    gap: 6px;
  }
  
  .pagination-btn {
    padding: 6px 8px;
    font-size: 12px;
  }
  
  .pagination-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .pagination-text {
    display: none;
  }
  
  .pagination-arrow {
    font-size: 14px;
  }
}


/* Media Queries */

@media only screen and (min-width: 1025px){
  #selectedProducts{
    display: flex;
    flex-direction: column;
    row-gap: 48px;
  }
  .product-price-entries img {
      width: 125px;
      height: 125px;
  }
  .product-price-entries{
    display: grid;
    width: 100%;
    gap: 64px;
    grid-template-columns: 125px 1fr;
  }
}

/* Mobile */
@media (max-width: 1024px) {
      .product-card {
        flex: 0 0 calc((100% - 32px) / 3);
        min-width: 92%;
      }
      .product-title {
        font-size: 13px;
        min-height: 90px;
      }
      .img__cls {
        padding: 6px;
      }
      .product-card img {
        height: 200px;
      }
      #selectedProducts {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .pro_img {
      margin-bottom: 15px;
    }
    .section_mains {
        padding: 10px;
    }

    .how_it_works {
      display: block !important;
    }
    .how-it-work-content {
        margin-bottom: 10px !important;
      }
      .how_it_works .how-it-work-content {
          width: 100%;
        max-width: 100%;
    }
}
@media ( max-width: 768px ) {
  .pro_img {
      text-align: center;
  }
  .information_fields .form-group {
      display: flex;
      gap: 30px !important;
      flex-direction: column;
  }
  .information_fields .form-group .col {
      width: 100%;
  }
} 

/* Top Rate My Prices button under search */
#topCtaContainer[hidden] {
  display: none !important;
}

#topCtaContainer {
  margin: 0 0 32px 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

#topCtaContainer button#nextStepBtnTop.custom-submit-btn.top-rate-btn {
  background-color: #39aae0 !important;
  border: none !important;
  padding: 14px 28px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  width: 100% !important;
  margin: 0 !important;
  display: block !important;
  font-family: inherit !important;
  line-height: 1.2 !important;
  text-align: center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

#topCtaContainer button#nextStepBtnTop.custom-submit-btn.top-rate-btn:hover {
  background-color: #39aae0 !important;
}

/* Step 2 button row */
.step-2-buttons {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  width: 100%;
  margin-top: 32px;
}

/* Back button */
.step-2-buttons .custom-back-btn {
  width: auto !important;
  min-width: 160px;
  max-width: 240px;
  padding: 12px 24px;
  border: 1px solid #d0d0d0;
  background: #e5e5e5;
  color: #0C2B48;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

/* Rate My Prices button */
.step-2-buttons .rate_my_price {
  width: 100%;
  padding: 16px 36px;
}

@media (max-width: 767px) {
  .step-2-buttons {
    flex-direction: column !important;
    gap: 14px !important;
  }

  .step-2-buttons .custom-back-btn,
  .step-2-buttons .rate_my_price {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.step-2-back-top {
  margin-bottom: 32px;
  justify-content: center;
}

.step-2-back-top + #selectedProducts {
  margin-top: 0;
}

.step-2-buttons .custom-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-form-wrapper .form-step[hidden],
.custom-form-wrapper .rmp-price-error[hidden] {
  display: none !important;
}

.custom-form-wrapper #step-2:not([hidden]) {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 32px !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper .rmp-step2-header {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper .rmp-step2-instructions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(12, 43, 72, 0.8) !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
}

.custom-form-wrapper #step2SelectionCount {
  color: #2e7d32 !important;
  font: inherit !important;
  white-space: nowrap !important;
}

body .custom-form-wrapper button.rmp-step-back {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 7px 15px !important;
  border: 1px solid #f2f2f2 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #0c2b48 !important;
  box-shadow: none !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
}

body .custom-form-wrapper button.rmp-step-back:hover {
  border-color: #d0d5dd !important;
  background: #ffffff !important;
  color: #0c2b48 !important;
}

body .custom-form-wrapper button.rmp-step-back:focus-visible,
body .custom-form-wrapper button.rmp-see-score-btn:focus-visible,
.custom-form-wrapper .rmp-price-input:focus-visible {
  outline: 3px solid rgba(57, 170, 224, 0.35) !important;
  outline-offset: 2px !important;
}

.custom-form-wrapper #selectedProducts.rmp-price-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  column-gap: 20px !important;
  row-gap: 20px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper .rmp-price-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 12px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper .rmp-price-card {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border: 1px solid #0c2b48 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

.custom-form-wrapper .rmp-price-image {
  display: flex !important;
  flex: 0 0 250px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 250px !important;
  min-height: 250px !important;
  margin: 0 !important;
  padding: 21px 32px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

.custom-form-wrapper .rmp-price-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 220.88px !important;
  max-height: 220.88px !important;
  margin: 0 !important;
  object-fit: contain !important;
}

.custom-form-wrapper .rmp-price-title {
  display: flex !important;
  flex: 1 1 auto !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 76px !important;
  margin: 0 !important;
  padding: 10px !important;
  border-radius: 0 0 6px 6px !important;
  background: #0c2b48 !important;
  color: #ffffff !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 28px !important;
  text-align: center !important;
  overflow-wrap: anywhere !important;
  box-sizing: border-box !important;
}

.custom-form-wrapper .rmp-price-field {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: 100% !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 9px 18px !important;
  overflow: hidden !important;
  border: 1px solid #e7eaed !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  cursor: text !important;
}

.custom-form-wrapper .rmp-price-currency,
.custom-form-wrapper .rmp-price-input {
  color: #475467 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 18px !important;
}

.custom-form-wrapper .rmp-price-currency {
  flex: 0 0 auto !important;
}

.custom-form-wrapper input.rmp-price-input {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  appearance: textfield !important;
}

.custom-form-wrapper input.rmp-price-input::-webkit-inner-spin-button,
.custom-form-wrapper input.rmp-price-input::-webkit-outer-spin-button {
  margin: 0 !important;
  appearance: none !important;
}

.custom-form-wrapper input.rmp-price-input::placeholder {
  color: rgba(71, 84, 103, 0.5) !important;
  font: inherit !important;
  opacity: 1 !important;
}

.custom-form-wrapper .rmp-price-field:focus-within {
  border-color: #39aae0 !important;
}

.custom-form-wrapper .rmp-price-field:has(.rmp-price-input[aria-invalid="true"]) {
  border-color: #d92d20 !important;
}

.custom-form-wrapper .rmp-price-error {
  width: 100% !important;
  margin: -16px 0 0 !important;
  padding: 0 !important;
  color: #d92d20 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  text-align: center !important;
}

.custom-form-wrapper .rmp-step2-cta {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .custom-form-wrapper button.rmp-see-score-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 53px !important;
  margin: 0 !important;
  padding: 12px 24px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #39aae0 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: normal !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  cursor: pointer !important;
}

body .custom-form-wrapper button.rmp-see-score-btn:hover {
  border: 0 !important;
  background: #39aae0 !important;
  color: #ffffff !important;
}

.custom-form-wrapper #step-3:not([hidden]) {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 32px !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper .rmp-step3-header {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper .rmp-step3-intro {
  display: flex !important;
  flex: 1 1 auto !important;
  align-items: flex-start !important;
  gap: 24px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper .rmp-step3-icon {
  display: flex !important;
  flex: 0 0 60px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  margin: 0 !important;
  padding: 17px !important;
  overflow: hidden !important;
  border: 1px solid #00aef6 !important;
  border-radius: 360px !important;
  background: #00aef6 !important;
  box-sizing: border-box !important;
}

.custom-form-wrapper .rmp-step3-icon img {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  margin: 0 !important;
}

.custom-form-wrapper .rmp-step3-copy {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper .rmp-step3-copy h2 {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #0c2b48 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
}

.custom-form-wrapper .rmp-step3-copy p {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #475467 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  overflow-wrap: anywhere !important;
}

.custom-form-wrapper #step-3 .rmp-step-back {
  margin-left: auto !important;
}

.custom-form-wrapper #step-3 .information_fields.rmp-step3-fields {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper #step-3 .rmp-step3-fields .form-group {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper #step-3 .rmp-step3-fields .col {
  flex: 1 1 0 !important;
  width: 50% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-form-wrapper #step-3 .details_name_required {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  width: 100% !important;
  min-height: 14px !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
}

.custom-form-wrapper #step-3 .custom-required {
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #f40000 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 14px !important;
}

.custom-form-wrapper #step-3 input.form-control {
  display: block !important;
  width: 100% !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  border: 1px solid #d0d5dd !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #0c2b48 !important;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
  box-sizing: border-box !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
}

.custom-form-wrapper #step-3 input.form-control::placeholder {
  color: #667085 !important;
  font: inherit !important;
  opacity: 1 !important;
}

.custom-form-wrapper #step-3 input.form-control:focus {
  border-color: #39aae0 !important;
  outline: 3px solid rgba(57, 170, 224, 0.2) !important;
  outline-offset: 1px !important;
}

.custom-form-wrapper .rmp-step3-submit {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .custom-form-wrapper #step-3 button.rate_my_price {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 53px !important;
  margin: 0 !important;
  padding: 12px 24px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #39aae0 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: normal !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  cursor: pointer !important;
}

body .custom-form-wrapper #step-3 button.rate_my_price:hover,
body .custom-form-wrapper #step-3 button.rate_my_price:focus {
  border: 0 !important;
  background: #39aae0 !important;
  color: #ffffff !important;
}

body .custom-form-wrapper #step-3 button.rate_my_price:focus-visible {
  outline: 3px solid rgba(57, 170, 224, 0.35) !important;
  outline-offset: 2px !important;
}

body .custom-form-wrapper #step-3 button.rate_my_price:disabled {
  cursor: wait !important;
  opacity: 0.75 !important;
}

.custom-form-wrapper .rmp-step3-privacy {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #475467 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 16px !important;
  text-align: center !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 980px) {
  .custom-form-wrapper #selectedProducts.rmp-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .custom-form-wrapper .rmp-step2-header {
    align-items: flex-start !important;
  }

  .custom-form-wrapper .rmp-step2-instructions {
    flex: 1 1 100% !important;
  }

  .custom-form-wrapper #selectedProducts.rmp-price-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .custom-form-wrapper .rmp-price-title {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .custom-form-wrapper .rmp-step3-header {
    align-items: flex-start !important;
  }

  .custom-form-wrapper .rmp-step3-intro {
    flex-basis: 100% !important;
    gap: 16px !important;
  }

  .custom-form-wrapper .rmp-step3-icon {
    flex-basis: 52px !important;
    width: 52px !important;
    height: 52px !important;
    padding: 13px !important;
  }

  .custom-form-wrapper .rmp-step3-copy p {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .custom-form-wrapper #step-3 .rmp-step3-fields .form-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
  }

  .custom-form-wrapper #step-3 .rmp-step3-fields .col {
    flex: 1 1 auto !important;
    width: 100% !important;
  }

  body .custom-form-wrapper #step-3 button.rate_my_price {
    font-size: 20px !important;
  }

  .custom-form-wrapper .rmp-step3-privacy {
    line-height: 22px !important;
  }
}
