.mypopups-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 999999;
  display: none;
  padding: 6vh 12px;
  overflow: auto;
}

.mypopups-inner{
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  position: relative;
}

.mypopups-loading{
  text-align: center;
  padding: 30px;
}

.mypopups-error{
  padding: 16px;
  text-align: center;
}

.mypopups-close{
  position: absolute;
  top: 10px;
  left: 10px; /* برای RTL می‌تونی right بذاری */
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(0,0,0,.08);
  font-size: 20px;
  line-height: 36px;
}

/* ---------- Popup: Call Us ---------- */
.mypopups-call{
  background-image: linear-gradient(45deg, #d3f5ff, whitesmoke);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  padding: 14px;
}

.mypopups-call .call-text{
  color: #6d62cd;
  font-size: 15px;
  text-align: right;
}

.mypopups-call .call-to-us-icon{
  font-size: 3em;
  background: #1dc222;
  padding: 10px 25px;
  border-radius: 50%;
  box-shadow: -2px 8px 10px 1px rgba(128,128,128,0.49);
  transition: 0.7s;
}

.mypopups-call .call-to-us-icon:hover{ background: #00e707; }

.mypopups-call .call-sar-titr{
  background: #0ecef9;
  font-size: 20px;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 8px;
  text-shadow: 1px 1px 3px #ff0000ba;
  border-radius: 12px;
}

.mypopups-call .call-to-us-map{
  border: 5px double;
  width: 360px;
  max-width: 100%;
}

.mypopups-call .call-logo-img{
  width: 25px;
  height: 25px;
  margin-left: 10px;
}

@media (max-width: 550px){
  .mypopups-inner{ max-width: 360px; }
}