
.trx_popup {
	-webkit-animation-name: fadeIn_popup;
	animation-name: fadeIn_popup;
}
.trx_popup.close {
	-webkit-animation-name: fadeOut_popup;
	animation-name: fadeOut_popup;
}
/* Custom styles
*******************************/
/* Center popup */
.trx_popup {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
}

/* Desktop */
.trx_popup .trx_popup_container {
    width: 500px !important;
    max-width: 90vw !important;
    height: auto !important;
}

.trx_popup_description img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 85vh !important;
    object-fit: contain !important;
}

/* Mobile */
@media (max-width: 767px) {
    .trx_popup .trx_popup_container {
        width: 94vw !important;
        max-width: 94vw !important;
    }

    .trx_popup_description {
        width: 100% !important;
    }

    .trx_popup_description img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 90vh !important;
        object-fit: contain !important;
    }
}