

/* =============================
   Multi Popup CSS
============================= */

.mp-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    position: fixed!important;
    top: 50%!important;
    left: 50%!important;
    margin: auto;
    max-width: 90%;
    overflow: hidden;
    text-align: center;
    padding: 10px;
}



.mp-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    text-align: center;
}

.mp-popup .mp-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    position: relative;
    margin: auto;
    max-width: 90%;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    padding: 25px;
    transition: all 0.4s ease;
}

.mp-close{
position:absolute;
top:10px;
right:12px;
cursor:pointer;
font-size:18px;
background-color:#fff;
border-radius:50%;
width:28px;
box-shadow: 0px 0px 10px 0px;
color: #000;
}



.mp-popup img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.mp-popup h2 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top:10px;
    font-family: 'Jost', sans-serif;
    color: #000;
}

.mp-popup p {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    color: #000;
}

.mp-popup a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.mp-popup a:hover {
    opacity: 0.9;
}

/* =============================
   Animations
============================= */

.mp-popup.fade .mp-box {
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: mp-fade 0.5s forwards;
}

.mp-popup.slide .mp-box {
    opacity: 0;
    transform: translate(-50%, -60%);
    animation: mp-slide 0.5s forwards;
}

.mp-popup.zoom .mp-box {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    animation: mp-zoom 0.4s forwards;
}

@keyframes mp-fade {
    to { opacity: 1; }
}

@keyframes mp-slide {
    to { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes mp-zoom {
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}