/* Modal Card Mobile for Estimate-Borehole Selections*/
.modal-card__overlay {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 8px;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1000;
}

.modal-card {
  position: relative;
  padding: 16px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0px 9px 46px 0px rgba(192, 114, 44, 0.16);
  width: 90%;
  max-width: 500px;
  height: 90dvh;
  max-height: 860px;
}

/*.modal-card:has(.modal__pipes) {*/
/*    max-height: 600px;*/
/*}*/

.modal-card:has(.modal__packages) {
  max-height: 648px;
}

.text--scrolled {
  overflow-y: auto;
}

.modal-card .btn__close {
  display: block;
  position: absolute;
  right: 4px;
  top: 8px;
  margin-left: auto;
  margin-right: 0;
  border: 0;
  background: transparent;
  z-index: 1001;
}


.modal__title {
  color: #75736A;
  font-family: 'Verdana', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.modal__text {
  color: #75736A;
  font-family: 'Verdana', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/*Methods Modal*/

.modal-methods__title {
  color: #75736A;
  font-family: 'Verdana', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

.modal-methods {
  background: #fff;
  padding: 8px;
}

.modal__description {
  color: #75736A;
  font-family: 'Verdana', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.modal-card__btn-apply {
  position: relative;
}

.modal-card__btn-apply::after {
  content: "";
  position: absolute;
  top: -30px; /* Adjusted to place it at the bottom */
  right: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(259, 255, 255, 1)); /* Gradient from bottom to top */
  pointer-events: none;
}

h3.method-titles--mobile {
  margin: 0;
}

.btn-primary--modal-apply {
  height: 48px;
}

.read-more-btn--modal {
  margin-right: 0;
  margin-left: auto;
  display: block;

}

.package-card--modal {
  margin: 0;
}

.package-card--modal.selected {
  border: 0;
  box-shadow: none;
}

.package-card--modal .card-footer {
  padding-bottom: 24px;
}


/*Footer*/
.estimate-total-info {
  justify-content: end;
}

.footer-total-price {
  text-align: right;
  line-height: 16px;
}

.footer-total-price__text {
  line-height: 12px;
}

.footer-total-price small {
  font-size: 8px;
  line-height: 8px;
}

/*Footer grid*/

.footer-main {
  background-color: #111; /* Dark background */
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  width: 150px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-lang-cert {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.language-selector img {
  width: 20px;
}

.certifications {
  display: flex;
  gap: 15px;
}

.certifications img {
  width: 50px;
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


/* Footer Grid - 2*/
.footer-main__container-grid {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  grid-template-rows: auto;
  row-gap: 24px;
  grid-template-areas:
    "contact nav lang"
    "policy copyrights certs"
}

.footer-main__about--grid {
  grid-area: contact;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  row-gap: 24px;
  max-width: 424px;
  grid-template-areas:
    "logo social"
    "phones email"
    "address address";
  font-size: 12px;
  line-height: 16px;
  font-family: 'Verdana', sans-serif;
  font-weight: 400;
}

.footer-main__about--grid .footer-main__info-address {
  grid-area: address;
  grid-column: span 2;
  width: 100%;
}

.footer-main__navbar {
  grid-area: nav;
  width: 440px;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.footer-main__languages {
  grid-area: lang;
  display: flex;
  justify-content: end;
}

.footer-main__links {
  grid-area: policy;
  display: flex;
  align-items: end;
  width: 280px;
}

.footer-main__links a:first-child {
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid #67655f;
}

.footer-main__links a {
  display: inline-block;
  font-family: 'Verdana', sans-serif;
  font-size: 12px;
  color: #c9c5af;
  font-weight: 400;
  line-height: 16px;
  text-decoration: underline;
  transition: color 0.2s ease;
}


.footer-main__copy {
  grid-area: copyrights;
  display: flex;
  align-items: end;
  width: 420px;
  text-align: center;
  font-family: 'Verdana', sans-serif;
  font-size: 8px;
  font-weight: 400;
  line-height: 16px;
}

.footer-main__certs {
  grid-area: certs;
}

.navbar__logo--footer {
  grid-area: logo;
  width: 220px;
}

.footer-main__icons-group {
  grid-area: social;
  display: flex;
  gap: 10px;
}

.footer-main__info-phone {
  grid-area: phones;
  display: flex;
  flex-direction: column;
}

.footer-main__info-email {
  grid-area: email;
  display: flex;
  flex-direction: column;
}

.accordion-header.estimate-header .nav-item--methods,
.accordion-header.estimate-header .nav-item--crossings,
.accordion-header.estimate-header .nav-item--pipes,
.accordion-header.estimate-header .nav-item--packages {
  width: 100%;
}


/* ------- Media Queries -------*/
@media screen and (max-width: 1399.9px) {
  #boreholes-summary .open-card .card-header .summary-accordion-title {
    text-align: left;
  }

  .borehole_header--nav .nav-link {
    padding: 16px;
  }

  .accordion-header.estimate-header .nav-item--methods,
  .accordion-header.estimate-header .nav-item--crossings {
    width: 22%;
  }

  .accordion-header.estimate-header .nav-item--packages {
    width: 23%;
  }

  .accordion-header.estimate-header .nav-item--pipes {
    width: 33%;
  }

  div.method-description p:nth-child(5) {
    height: 48px;
  }

}

@media screen and (max-width: 1199.9px) {
  .price-title {
    display: none;
  }

  .footer-main__navbar {
    width: 100%;
    justify-content: center;
  }

  .footer-main__about--grid {
    width: 315px;
    row-gap: 16px;
    grid-template-areas:
    "logo social"
    "phones phones"
    "email email"
    "address address";
  }

  .footer-main__about--grid .footer-main__info-email {
    grid-area: email;
    grid-column: span 2;
    width: 100%;
  }

  .footer-main__about--grid .footer-main__info-phone {
    grid-area: phones;
    grid-column: span 2;
    width: 100%;
  }

  .footer-main__copy {
    margin-left: -44px;
  }

  .filter-widget__pipeConfigurations {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .nav-item--pipes.borehole_header--nav button.nav-link {
    padding-right: 4px;
    padding-left: 12px;
  }

  .accordion-header.estimate-header .nav-item--methods {
    width: 16%;
  }

  .accordion-header.estimate-header .nav-item--crossings {
    width: 24%;
  }

  .accordion-header.estimate-header .nav-item--pipes {
    width: 38%;
  }

  .accordion-header.estimate-header .nav-item--packages {
    width: 22%;
  }

  .package-tag svg.star {
    width: 18px;
    height: 18px;
  }

  div.method-description p:first-child {
    height: 120px;
  }

  .borehole-header__title {
    width: 55%;
  }



}

@media screen and (max-width: 991.9px) {

  .et-text.et__date {
    transform: rotate(270deg);
    font-size: 10px !important;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .package-tag svg.star {
    width: 20px;
    height: 20px;
  }

  .accordion-header.estimate-header .nav-item--methods,
  .accordion-header.estimate-header .nav-item--crossings {
    width: 22%;
  }

  .accordion-header.estimate-header .nav-item--packages {
    width: 23%;
  }

  .accordion-header.estimate-header .nav-item--pipes {
    width: 33%;
  }

  /*----- Estimate's Boreholes ------*/
  .accordion-header__nav .nav-tabs {
    flex-direction: column;
  }

  .accordion-header.estimate-header .nav-item--methods,
  .accordion-header.estimate-header .nav-item--crossings,
  .accordion-header.estimate-header .nav-item--pipes,
  .accordion-header.estimate-header .nav-item--packages {
    width: 100%;
    max-width: unset;
  }

  .accordion-header.estimate-header .nav-item {
    border-bottom: 2px solid #FBFBFB;
  }

  .w-md-100 {
    width: 100%;
  }

  #getEstimateBtn {
    max-width: 160px;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    padding: 8px 12px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  #getEstimateBtn img {
    width: 20px;
    margin-left: 8px !important;
  }

  .footer-main__container-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
    row-gap: 24px;
    grid-template-areas:
    "contact nav "
    "certs certs"
    "policy policy"
    "copyrights copyrights";
  }

  .footer-main__about--grid .footer-main__info-address {
    margin-bottom: 80px;
  }

  .footer-main__languages {
  }

  .footer-main__navbar {
    grid-area: nav;
    grid-column: span 3;
    display: flex;
    justify-content: center;
    max-width: unset;
    margin-bottom: 80px;
  }

  .footer-main__certs {
    grid-area: certs;
    grid-column: span 3;
    display: flex;
    justify-content: center;
  }

  .footer-main__links {
    grid-area: policy;
    grid-column: span 3;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-main__copy {
    grid-area: copyrights;
    grid-column: span 3;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: unset;
  }

  .borely-footer__nav .item {
    padding-bottom: 24px !important;
  }

  .btn-group--toggle-view button,
  #shareEstimateBtn {
    width: 100%;
    padding: 13px 0 !important;
  }

  .btn-group--toggle-view button span {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 164px;
  }

  .btn-group--toggle-view,
  #shareEstimateBtn {
    width: 100%;
  }

  #extendedViewBtn:focus,
  #compactedViewBtn:focus,
  #extendedViewBtn:hover,
  #compactedViewBtn:hover,
  #shareEstimateBtn:hover {
    color: #e35910;
    box-shadow: none;
    border-bottom-color: #e37410;
  }

  .editable-title h3 {
    border: none;
    padding-left: 0 !important;
  }

  .notes-toggle svg.rotated {
    transform: rotate(180deg);
  }

  /*Animation*/
  .slide-enter-active, .slide-leave-active {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    overflow: hidden;
  }

  .slide-enter-from, .slide-leave-to {
    max-height: 0;
    opacity: 0;
  }

  .slide-enter-to, .slide-leave-from {
    /*max-height: 200px; !* Adjust based on your content *!*/
    opacity: 1;
  }

  /* The end of animation*/
  .details-list {
    flex-direction: column;
    gap: 8px !important;
  }

  #boreholes-summary .crossings-summary-img--mini {
    width: 100%;
    max-width: 180px;
  }

  .img-content {
    max-height: 174px;
  }

  #boreholes-summary .card-content {
    justify-content: flex-start !important;
    flex-direction: column;
    height: 100%;
    min-width: 300px;

  }

  #boreholes-summary .summary-card-description {
    position: static;
    margin-top: -24px;
  }

  #boreholes-summary .crossings-summary-img {
    margin-bottom: 0;
  }


  .pipe-conditional-msg p {
    margin-bottom: 0 !important;
  }

  .nav-item .nav-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .filter-widget__pipeConfigurations {
    padding-top: 0 !important;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .nav-item--pipes.borehole_header--nav button.nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }

  .setup-card__mobile {
    position: relative;
    padding-top: 0px;
    width: 102px;
    height: 102px;
    background-color: rgb(249, 249, 249);
    border-radius: 8px;
    border: 2px solid rgb(221, 219, 206);
    color: rgb(221, 219, 206);
    font-weight: bold;
    cursor: pointer;
    background-size: cover;
    background-position: center center;
    opacity: 1;
  }

  .otp-content-wrapper .btn-back {
    margin-bottom: 5dvh;
  }

  .otp-resend {
    margin-top: 7dvh;
  }

  .sleeve-title--mobile {
    font-size: 14px;
    color: #AFAA9B;
  }

  #boreholes-summary .config-title {
    display: inline;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .borehole-header__title {
    width: 58%;
  }


  .price.borehole_price.badge {
    /*width: 19%;*/
  }

  .method-description--mobile p {
    height: 32px;
  }

  .method-description--mobile p:nth-child(2) {
    height: 24px;
  }

}

@media screen and (max-width: 780.9px) {


  /*----- Footer with Estimate's Data -------*/
  .footer-main__container-grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
    row-gap: 24px;
    grid-template-areas:
    "contact lang "
    "nav nav"
    "certs certs"
    "policy policy"
    "copyrights copyrights";
  }

  #getEstimateBtn {
    max-width: 180px;
    font-size: 14px;
    padding: 8px 12px
  }

  .footer-text,
  .footer-total-price {
    display: inline-block;
    font-size: 14px;
  }

  .footer-total-price__text {
    font-size: 12px;
  }

  .footer-total-price__wrapper {
    flex-direction: row;
  }

  .wrapper-info,
  .otp-inputs {
    width: 380px;
  }

  .wrapper-info .infoMessageSubtitle {
    margin-left: auto;
    margin-right: auto;
    /*text-align: left;*/
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 380px;
  }

  .otp-digit {
    width: 50px;
    height: 56px;
    padding-top: 8px;
  }

  .footer-total-price {
    width: 140px;
  }

  .footer-total-price--count {
    width: unset;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-logo-contact {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-lang-cert {
    align-items: center;
  }

  .language-selector {
    justify-content: center;
  }

  .footer-main__about--grid {
    grid-area: contact;
    grid-column: span 2;
    width: 100%;
    max-width: unset;
    padding-top: 16px;
  }

  .footer-main__languages {
    grid-area: lang;
    grid-column: span 1;
  }

  .footer-main__about--grid .footer-main__info-address p {
    line-height: 22px;
  }

  .modal__pipes .tab-content {
    padding: 16px;
    background: #FFFFFF;
    border-radius: 8px;
  }

  .modal__pipes .filter-widget {
    padding: 0;
  }

  .modal__pipes .filter-widget__container {
    flex-direction: column;
  }

  .modal__pipes .filter-widget__large-image-container {
    margin-top: 16px;
  }

  #summaryContainer .summary-title {
    font-size: 28px;
    line-height: 36px;
  }

  .filter-widget__pipeConfigurations {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .filter-widget__mrl-selection form {
    flex-direction: column;
    align-items: baseline;
  }

  .mrl-options {
    margin-top: 16px;
  }

  .filter-widget__pipeMaterials, .filter-widget__sleeveMaterials {
    margin-bottom: 0;
  }

  .pipe-conditional-msg__text {
    position: relative;
    cursor: pointer;
  }

  .pipe-conditional-msg__text p {
    /*white-space: nowrap;*/
    overflow: hidden;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .pipe-conditional-msg__tooltip {
    position: absolute;
    top: 110%;
    left: 1%;
    width: 90%;
    background-color: #75736a;
    color: white;
    padding: 5px;
    border-radius: 2px;
    font-size: 12px;
    word-wrap: break-word;
    z-index: 1000;
    text-align: left;
  }

  .pipe-conditional-msg__text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  /*h2.borehole_title {*/
  .borehole-header__title {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1em;
    margin: 0;
    width: 45%;
  }
  .borehole-header__title.full-width-mobile {
    width: 100% !important;
  }

  .price.borehole_price.badge.ms-3 {
    position: static;
    width: 100%;
    max-width: 140px;
    text-align: right;
    margin: 0 !important;
  }

  .editButtons {
    width: 100%;
    max-width: 20px;
  }

  .modal__estimate-title .modal-content {
    min-width: unset;
  }

  #estimate-title span {
    font-size: 30px;
  }

  #initialScreenTitle {
    margin-bottom: 16px;
  }

  .or-container {
    margin: 16px 0;
  }

  .share-modal {
    max-height: 730px;
  }

  .modal-container--terms {
    padding: 36px;
  }

  .share-modal .modal-text--scrolled {
    max-height: 77dvh;
  }

  .share-modal .popup-title--terms {
    font-size: 14px;
  }

  .share-modal.modal-container--policy {
    max-height: 320px;
  }

  /* dashboard for mobile*/
  .accordion__header-content .estimate-title.et__title {
    font-size: 10px !important;
    line-height: 14px !important;
  }

  .modal-text--time {
    width: 116px;
    text-align: left !important;
  }

  #estimatesList .accordion__header-content--closed {
    height: 82px;
  }

  #estimatesList .accordion__header-content--closed .et-text:first-child {
    font-size: 10px !important
  }

  .et-text.et__crossings {
    font-size: 10px !important;
    margin-left: 6px;
  }

  .et-text.et__pipes {
    font-size: 10px !important;
    margin-left: 6px;
  }

  .et-text.et__packages {
    font-size: 10px !important;
    margin-right: 4px;
  }

  .et-text.et__methods {
    font-size: 10px !important;
    margin-left: 6px;
  }

  .et__toggle {
    display: none !important;
  }

  #contactModal .modal-dialog {
    max-width: 540px;
  }

  #boreholes-summary .closed-card .card-header .summary-accordion-title,
  #boreholes-summary .open-card .card-header .summary-accordion-title {
    max-width: 180px;
  }

  .package-stars {
    max-width: 30%;
  }

  /* privacy policy for mobile*/
  #privacy-policy-container .container h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 48px;
  }

  /* terms of use for mobile*/
  #terms-of-use-container .container h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 48px;
  }

  .dust-background {
    height: 100%;
    padding-top: 112px;
  }

  .login-content-wrapper {
    position: relative;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .login-content-wrapper::before {
    display: block;
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, transparent 0%, #67472eb6 15%, #67472e 30%, #39200f 100%);
    width: 100%;
    height: 90%;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .initial-background .col-12 {
    position: relative;
    z-index: 2;
  }

  .login-app-container {
    /*height: var(--vh, 100vh);*/
    height: calc(var(--vh, 1vh) * 100);
    min-height: 100vh;
    transition: height 0.2s;
  }

  #estimatesList .accordion__header-content--closed .et-text:first-child {
    font-size: 10px !important
  }

}


@media screen and (max-width: 575.9px) {
  .wrapper-info,
  .otp-inputs {
    width: 340px;
  }

  .tooltip-crossings {
    white-space: unset;
    width: 200px;
  }

  .btn-group--download-pdf .dropdown-menu.show {
    transform: translate(80px, 60px) !important;
  }

  .footer .container {
    padding-right: 0;
  }

  .footer-main__about--grid {
    grid-template-areas:
    "logo logo"
    "social social"
    "phones phones"
    "email email"
    "address address";
  }

  .footer-main__about--grid .navbar__logo--footer {
    grid-area: logo;
    grid-column: span 2;
    width: 100%;
    margin-bottom: 32px;
  }

  .footer-main__about--grid .footer-main__icons-group {
    grid-area: social;
    grid-column: span 2;
    width: 100%;
    margin-bottom: 56px !important;
  }

  /* Summary page */
  .summary-header {
    flex-direction: column;
    gap: 24px;
  }

  .dropdown-toggle-split {
    max-width: 52px;
  }

  #summaryContainer .summary-title {
    font-size: 32px;
    line-height: 40px;
  }

  #boreholes-summary .summary-card-description {
    bottom: 8px;
  }

  .closed-header .summary-accordion-title {
    max-width: 65%;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    position: relative;
  }

  .closed-header .summary-accordion-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px; /* Adjust fade effect width */
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
  }

  .open-header .summary-accordion-title {
    max-width: 65%;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    position: relative;
  }

  .open-header .summary-accordion-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px; /* Adjust fade effect width */
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(117, 115, 106));
  }

  .card-overlay {
    font-size: 10px;
  }

  .modal__estimate-title .modal-title {
    font-size: 28px;
  }

  .privacy-footer-text {
    font-size: 10px;
  }

  #contactUsBtn {
    font-size: 14px;
    padding: 8px 12px;
  }

  .footer-total-price__text {
    display: block;
    text-align: right;
    font-size: 10px;
    line-height: 15px;
  }

  .tab-info-title--pipes span {
    font-weight: bold;
  }

  .btn--full-width {
    width: 100%;
    max-width: 224px;
  }

  .blurred-background {
    overflow-y: auto;
  }

  #boreholes-summary .card-header {
    padding-left: 12px !important;
  }

  .borehole-header__title {
    /*width: 90%;*/
  }
  .price.borehole_price.badge {
    width: 29%;
  }

  .method-description--mobile p {
    height: 48px;
  }


}

@media screen and (max-width: 490px) {
  /*----- Footer with Estimate's Data -------*/
  .footer-total-price__wrapper {
    flex-direction: column;
  }

  #getEstimateBtn {
    max-width: 130px;
  }

  #getEstimateBtn img {
    display: none;
  }

  .footer-total-price,
  .footer-text {
    font-size: 14px;
  }

  .footer-main__about--grid .footer-main__info-address {
    width: 156px;
  }

  #boreholes-summary .crossings-summary-img {
    height: auto;
  }

  .filter-widget__pipeConfigurations {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 8px;
  }

  .card-overlay {
    font-size: 12px;
  }

  .card-body__image {
    width: 85px;
    height: 85px;
  }

  .card-stars {
    width: 46px;
  }

  .package-card:nth-child(2) {
    transform: unset;
  }

  #boreholes-summary .closed-card .card-header .summary-accordion-title,
  #boreholes-summary .open-card .card-header .summary-accordion-title {
    max-width: 112px;
  }
  #boreholes-summary .closed-card .card-header .summary-accordion-price span {
    font-size: 7px;
  }

}

@media screen and (max-width: 410px) {
  .btn-group--toggle-view button svg,
  #shareEstimateBtn svg {
    display: none;
  }
}

@supports (-webkit-touch-callout: none) {
  .phone-input__field,
  .base-input__field {
    background: rgba(30, 30, 30, 0.3);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}










