.rrm-wrap{
  position:relative;
  width:100%;
  max-width:520px;
  margin:0 auto;
  overflow:visible;
  background:transparent !important;
  line-height:0;
}

.rrm-wrap svg{
  width:100%;
  height:auto;
  display:block;
  overflow:visible;
  background:transparent !important;
}

.rrm-popup{
  position:absolute;
  z-index:9999;
  width:min(260px,calc(100vw - 24px));
  box-sizing:border-box;
  padding:18px 52px 18px 18px;
  background:rgba(255,255,255,.96);
  border:1px solid #DDE8E2;
  border-radius:14px;
  box-shadow:0 16px 45px rgba(10,10,10,.16);
  transform:translate(-50%,calc(-100% - 12px));
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .15s ease, transform .15s ease;
  font-family:Inter,Arial,system-ui,sans-serif;
  line-height:1.4;
}

.rrm-popup.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.rrm-popup.is-below{
  transform:translate(-50%,0);
}

.rrm-popup::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-7px;
  width:14px;
  height:14px;
  background:rgba(255,255,255,.96);
  border-right:1px solid #DDE8E2;
  border-bottom:1px solid #DDE8E2;
  transform:translateX(-50%) rotate(45deg);
}

.rrm-popup.is-below::after{
  top:-7px;
  bottom:auto;
  border-right:0;
  border-bottom:0;
  border-left:1px solid #DDE8E2;
  border-top:1px solid #DDE8E2;
}

.rrm-popup-name{
  color:#1A5C38;
  font-weight:800;
  font-size:clamp(15px,3.4vw,18px);
  line-height:1.25;
  margin-bottom:7px;
}

.rrm-popup-district{
  color:#0A0A0A;
  font-size:clamp(12px,2.8vw,14px);
  line-height:1.45;
}

.rrm-popup-province{
  color:#0D3B6E;
  font-size:clamp(11px,2.5vw,13px);
  font-weight:700;
  margin-top:4px;
}

.rrm-popup-close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  min-width:40px;
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  padding:0;
  border:0;
  border-radius:50%;
  background:#1A5C38;
  color:#FFFFFF;
  font:400 28px/1 Arial,sans-serif;
  cursor:pointer;
  pointer-events:auto;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
  user-select:none;
}

.rrm-popup-close:hover{
  background:#0D3B6E;
}

.rrm-popup-close:focus-visible{
  outline:3px solid #F4C614;
  outline-offset:2px;
}

@media (max-width:600px){
  .rrm-popup{
    width:min(240px,calc(100vw - 20px));
    padding:16px 48px 16px 16px;
    border-radius:12px;
  }

  .rrm-popup-close{
    width:38px;
    height:38px;
    min-width:38px;
    min-height:38px;
    top:8px;
    right:8px;
    font-size:26px;
  }
}

@media (max-width:380px){
  .rrm-popup{
    width:calc(100vw - 16px);
    padding:14px 46px 14px 14px;
  }

  .rrm-popup-close{
    width:36px;
    height:36px;
    min-width:36px;
    min-height:36px;
    top:7px;
    right:7px;
    font-size:24px;
  }
}
