.modal .product {
    position: relative;
    background: var(--white-color);
    padding: 25px;
}

.modal .product-gallery {
    top: 25px;
}

.button-close {
    display: none;
}

.modal .button-close {
    display: block;
    position: absolute;
    right: -10px;
    top: -10px;
}

.more-details {
    display: none;
}

.modal .more-details {
    display: block;
    text-decoration: underline;
    text-align: end;
    font-size: var(--text-sm);
    margin-bottom: 10px;
}

.modal .ring_size {
    display: none;
}

@media (max-width: 767px) {
    .modal .product {
        min-height: 100vh;
    }

    .modal .button-close {
        right: 30px;
        top: 37px;
    }
}