.popup__main.popup--result{
    border-radius: 4px;
    background-color: #fff;

    .success-ajax--popup {
        padding: 20px;
        border-radius: 4px;

        .message-in-popup{

            .message.success > *{
                background: transparent;
                color: #222;
                font-size: 1.3rem;
                font-weight: 500;
                text-wrap: pretty;
                border-bottom: 1px solid lightgrey;
                border-radius: 0px !important;
                margin-bottom: 5px !important;
                margin-top: 5px !important;
                padding: 7px 0px 5px 0px !important;
            }
        }

        .product-content-in-popup{
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            padding: 5px;

            .media-in-content-popup{
                width: 50%;
                display: flex;
                justify-content: center;

                .popup__image-wrapper{
                    display: flex;
                    justify-content: center;

                    .img-responsive{
                        width: 100%;
                    }
                }
            }

            .text-in-content-popup{
                text-align: center;
                text-transform: uppercase;
                font-weight: 600;
                color: #222;
                width: 50%;
            }

            .text-in-content-popup > *,.text-in-content-popup > * > * {
                margin: 0px !important;
            }
        }

        .button-in-popup{
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px 0px;

            .popup__actions-wrapper{
                padding: 0px !important;

                .popup__action-redirect--checkout{
                    background: #000;
                    color: #fff;
                    border: none;
                    font-size: 16px;
                    cursor: pointer;
                    border-radius: 4px;
                    min-height: 30px;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
                }

                .popup__action-redirect--checkout:hover{
                    background: #9b9b9b !important;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

                    span {
                        transform: scale(1.05); /* Escalar ligeramente el texto */
                    }
                }

                .popup__action-redirect--checkout span{
                    font-size: 1.4rem;
                    font-weight: 500;
                    display: inline-block;
                    transition: transform 0.3s ease;
                }
            }
        }
    }

}
.success-ajax--popup .mfp-inline-holder .mfp-content{
    border-radius: 8px;
}
