.image-hint-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.image-hint-modal__content {
    position: relative;
    background: white;
    padding: 10px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-hint-modal__content img {
    max-width: 100%;
    max-height: 100%;
}

.image-hint-modal.show {
    display: flex;
}