.custom-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    border-radius: 40px;
}

.custom-popup.active {
    display: flex;
}

.popup-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 40px;
}

.popup-close {
    background: url(../images/close.svg) no-repeat !important;
    width: 50px !important;
    height: 51px !important;
    font-size: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    right: 20px !important;
    top: 20px !important;
    box-shadow: none !important;
    display: block;
    position: absolute;
    z-index: 1;
    cursor: pointer;
}

.popup-link {
    display: block;
}