
.modal-fade-in.modal .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.modal-fade-in.modal.show .modal-dialog {
    transform: scale(1);
}

.modal-dialog-centered-custom {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content-custom {
    border-radius: 15px;
    border: none;
    animation: bounceIn 0.5s;
}

.modal-header-custom {
    border-bottom: none;
    padding: 1rem 1.5rem;
}

.modal-body-custom {
    padding: 0;
}

.modal-body-custom img {
    border-radius: 15px;
    width: 100%;
}

.btn-close-custom {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    opacity: 1;
}

@media (max-width: 768px) {
    .modal-dialog-centered-custom {
        min-height: calc(100% - 3.5rem);
    }
    .modal-content-custom {
        width: 90vw;
        max-width: 400px;
    }
    .promotional-image-desktop {
        display: none;
    }
    .promotional-image-mobile {
        display: block;
    }
}

@media (min-width: 769px) {
    .promotional-image-desktop {
        display: block;
    }
    .promotional-image-mobile {
        display: none;
    }
}
