/* Basic full-screen modal styles */
.wlm-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.wlm-modal.is-open { display: flex; }
.wlm-modal__backdrop {
  position: absolute;
  inset: 0;
      background: rgb(0 0 0 / 24%);
  backdrop-filter: blur(4px);
}
.wlm-modal__card {
  position: relative;
  z-index: 1;
  width: min(92vw, 520px);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 28px 24px;
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  animation: wlm-pop 160ms ease-out;
}
@keyframes wlm-pop {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.wlm-modal__title {
    font-size: 1.4rem !important;
    margin: 0 0 4px 0;
    font-weight: 500 !important;
    letter-spacing: -0.01em;
}

.wlm-modal__subtitle {
  margin: 0 0 16px 0;
  color: #444;
  font-size: 15px;
}
.wlm-modal__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}
.wlm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  appearance: none;
  border: 1px solid #d0d0d0;
  background: #fff;
  border-radius: 9999px;
  padding: 10px 16px 10px 12px;
  font-size: 15px;
  cursor: pointer;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
  min-width: 140px;
  justify-content: center;
}
.wlm-btn:hover { transform: translateY(-1px); }
.wlm-btn:active { transform: translateY(0); }
.wlm-btn--primary {
  border-color: #111;
}
.wlm-flag {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  display: inline-block;
  flex: 0 0 20px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.wlm-modal__note {
  margin: 14px 0 0 0;
  color: #666;
  font-size: 12px;
}
body.wlm-locked { overflow: hidden; }

@media(min-width:959px){
	#logo-container-mobile .mmb-container {
display: none !important;
}
}
@media(max-width:959px){
	#menu-item-277849 {
display: none !important;
}
}