/*
  Updated Styles for BOTH Popup Modals
*/

/* Apply overlay styles to both modals */
#info-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .48);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex; 
  visibility: hidden; 
  justify-content: center; 
  z-index: 9999;
  opacity: 0; 
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  overflow-y: hidden; 
  align-items: flex-start; 
  padding: 7vh 1rem; 
}#services-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .48);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex; 
  visibility: hidden; 
  justify-content: center; 
  z-index: 9999;
  opacity: 0; 
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  overflow-y: hidden; 
  align-items: flex-start; 
  padding: 7vh 1rem; 
}
#choose-sparkle-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .48);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex; 
  visibility: hidden; 
  justify-content: center; 
  z-index: 9999;
  opacity: 0; 
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  overflow-y: hidden; 
  align-items: center; 
  padding: 7vh 1rem; 
}

/* Show class applies to both modals */
#info-modal.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s;
  overflow-y: auto;
}#services-modal.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s;
  overflow-y: auto;

}
#choose-sparkle-modal.show {  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s;

  overflow-y: scroll;
}
#choose-sparkle-modal::-webkit-scrollbar{
background: transparent;
visibility: hidden;
}
/* Apply content styles to both modals */
#info-modal .modal-content {
  background-color: #fff;
  border-radius: 28px;
  width: 90%;
  max-width: 1260px;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(1);
  flex-shrink: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "cell";
}
#services-modal .modal-content {
  background-color: #fff;
  border-radius: 28px;
  width: 90%;
  max-width: 700px;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(1);
  flex-shrink: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "cell";
}

#choose-sparkle-modal .modal-content {
    background-color: #fff;
  border-radius: 28px;
  width: 90%;
  max-width: 800px;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(1);
  flex-shrink: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "cell";

}
/* Apply close button styles to both modals */
#info-modal .modal-close-btn,#services-modal .modal-close-btn,

#choose-sparkle-modal .choose-sparkle-modal-close-btn {
  grid-area: cell;
  position: sticky;
  top: 20px; 
  justify-self: end;
  margin-right: 20px;
  z-index: 10;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}
#choose-sparkle-modal .choose-sparkle-modal-close-btn {  margin-top: 20px;

}
#info-modal .modal-close-btn svg,
#choose-sparkle-modal .choose-sparkle-modal-close-btn svg, #services-modal .modal-close-btn svg{
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: fill 0.2s ease;
}    
#info-modal .modal-close-btn:hover,
#choose-sparkle-modal .choose-sparkle-modal-close-btn:hover, #services-modal .modal-close-btn:hover{
  transform: scale(1.05);
}#choose-sparkle-modal .choose-sparkle-modal-close-btn:hover { transform: scale(1.025);
}

#info-modal .modal-close-btn:hover svg,#services-modal .modal-close-btn:hover svg,
#choose-sparkle-modal .choose-sparkle-modal-close-btn:hover svg {
  fill: #fcc209;
}


/* Apply body styles to both modals */
#info-modal #modal-body,#services-modal #modal-body,

#choose-sparkle-modal #choose-sparkle-modal-body {
    grid-area: cell;
    padding: 76px; 
}

/* Apply shared content styles to both modals */
#info-modal span,#services-modal span,

#choose-sparkle-modal span {
    font-size: 19px;
    line-height: 1.4211026316;
    font-weight: 600;
    letter-spacing: .012em;
}

#info-modal h2,#services-modal h2 {
    margin-top: 12px;
    font-size: 56px;
    line-height: 1.0714285714;
    font-weight: 600;
    letter-spacing: -.005em;
    margin-bottom: 64px;
}

#choose-sparkle-modal p {    
  margin-bottom:24px;
}

#choose-sparkle-modal h2 {    margin-top: 12px;
    font-size: 56px;
    line-height: 1.0714285714;
    font-weight: 600;
    letter-spacing: -.005em;

  margin-bottom:24px;
}
#info-modal .DeepModalBodyContainer,#services-modal .DeepModalBodyContainer,

#choose-sparkle-modal .DeepModalBodyContainer {
    background-color: #f5f5f7;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#info-modal .DeppModalBodyContainerContent p,#services-modal .DeppModalBodyContainerContent p,

#choose-sparkle-modal .DeppModalBodyContainerContent p {
    color: #6e6e73;
    font-size: 28px;
    line-height: 1.1428571429;
    font-weight: 600;
    letter-spacing: .007em;
    padding-top:64px;
    padding-left:56px; 
    padding-right:56px;
    padding-bottom:32px;
}

#info-modal .DeppModalBodyContainerContent p span,#services-modal .DeppModalBodyContainerContent p span,

#choose-sparkle-modal .DeppModalBodyContainerContent p span {
    color: #1d1d1f;
    font-size: 28px!important;
    line-height: 1.1428571429!important;
    font-weight: 600!important;
    letter-spacing: .007em!important;
}

#info-modal .DeepModalBodyContainer img,
#choose-sparkle-modal .DeepModalBodyContainer img {
  width:100%;
  height:100%;
}

#info-modal .DeppModalBodyContainerContent,#services-modal .DeppModalBodyContainerContent,

#choose-sparkle-modal .DeppModalBodyContainerContent {
    padding-top:74px;
    padding-left:74px;
    padding-right:74px;
}

#info-modal .subdmbc,#services-modal .subdmbc,

#choose-sparkle-modal .subdmbc {
  margin-top: 24px;
}


.services-modal-deep-content {
  padding:24px;
}
.services-modal-deep-title {
  display:flex;
  flex-direction:column;
  gap:12px;
  justify-content: flex-start;
  align-items: flex-start;

}

.services-modal-deep-title img {
  width:44px;
  height:44px;
}

.services-modal-deep-title p {
        font-size: 18px;
    line-height: 1.0714285714;
    font-weight: 600;
    letter-spacing: -.005em;
padding-bottom:12px;
}

.services-compatibility-modal {
  color:rgb(102, 102, 102);padding-bottom:24px;

}


.services-compatibility-modal-subtext {
          font-size: 14px;
    line-height: 1.2714285714;
    font-weight: 400;
    letter-spacing: -.005em;
  color:rgb(102, 102, 102);padding-bottom:12px;

}
.services-compatibility-modal-subtext a {
  color:#ff6f00;
  cursor: pointer;
}
.property-type-bullet-modal {
    display:flex;
  flex-direction:row;
  gap:12px;
  justify-content: flex-start;
  align-items: flex-start;
padding-bottom:7px;
}

.property-type-bullet-modal img {
  width:32px;
}
.property-type-bullet-modal-column {
    display:flex;
  flex-direction:column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top:6px;
}


.property-type-modal-sublabel {
    font-size: 15px;
    line-height: 1.2353641176;
    font-weight: 400;
    letter-spacing: -.022em;    color: rgb(102, 102, 102);

}

.DeepModalBodyContainer-services-after {
  margin-top:24px;
}

@media (max-width:720px) {
#choose-sparkle-modal-body h2 {
  font-size:50px!important;
}
}
@media (max-width:591px) {
#choose-sparkle-modal-body h2 {
  font-size:44px!important;
}
}
@media (max-width:546px) {
   #choose-sparkle-modal #choose-sparkle-modal-body {
    padding: 69px;
}

}@media (max-width:517px) {
    #choose-sparkle-modal-body span {
      font-size:15px;

  }
#choose-sparkle-modal-body h2 {
  font-size:38px!important;
}
#choose-sparkle-modal-body p {
  font-size:15px;
}
   #choose-sparkle-modal #choose-sparkle-modal-body {
    padding: 59px;
}


}@media (max-width:472px) {
  #choose-sparkle-modal-body span {
      font-size:14px;

  }
#choose-sparkle-modal-body h2 {
  font-size:24px!important;
}
#choose-sparkle-modal-body p {
  font-size:14px;
}
   #choose-sparkle-modal #choose-sparkle-modal-body {
    padding: 39px;
}


}