.msb_target_item.has-popup {
    cursor: pointer;
}

/* Popup Styles */
.msb-target-popup {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 24px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.msb-target-popup.active {
    display: flex;
    visibility: visible;
}

.msb-target-popup .msb-target-popup__inner {
    width: 100%;
    max-width: 1024px;
    max-height: 90vh;
    position: relative;
    background: #fff;
    padding: 40px;
    border: 1px solid var(--alias-border-default, #dee5ef);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 12px;
}

@media only screen and (max-width: 767px) {
    .msb-target-popup .msb-target-popup__inner {
        height: auto;
        max-height: 100%;
        flex-direction: column-reverse;
    }
}

.msb-target-popup .msb-target-popup__close {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0) url(../../../assets/images/package_images/ic_close.svg) no-repeat center center;
    background-size: contain;
    z-index: 3;
    margin: 0;
    padding: 0;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    cursor: pointer;
    border: none;
}

.msb-target-popup .msb-target-popup__content {
    overflow-y: auto;
    flex: 1;
}

.msb-target-popup .msb-target-popup__image {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f4f7fa;
    flex: 1
}

.msb-target-popup .msb-target-popup__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.msb-target-popup .msb-target-popup__header {
    padding: 12px 0;
}

.msb-target-popup .msb-target-popup__title {
    font-size: 26px;
    font-weight: 700;
    color: #091E42;
    flex: 1;
}

.msb-target-popup .msb-target-popup__body {
    flex: 1;
}

.msb-target-popup .msb-target-popup__body p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #091E42;
}

.msb-target-popup .msb-target-popup__body p:last-child {
    margin-bottom: 0;
}

.msb-target-popup .msb-target-popup__body img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    margin: 16px 0;
}

.msb-target-popup .msb-target-popup__body ul,
.msb-target-popup .msb-target-popup__body ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.msb-target-popup .msb-target-popup__body li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #626F86;
}


@media (max-width: 767px) {
    .msb-target-popup .msb-target-popup__inner {
        height: auto;
        max-height: 100%;
        padding: 16px;
    }

    .msb-target-popup .msb-target-popup__body p {
        font-size: 14px;
    }

    .msb-target-popup .msb-target-popup__title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .msb-target-popup .msb-target-popup__close {
        background-color: #fff;
        color: #000;
        right: 24px;
        top: 24px;
        height: 32px;
        width: 32px;
        border-radius: 50%;
    }
}