.modal-mr{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
}
.modal-mr.open{
    display: flex;
}
.btn-close-modal{
    position: absolute;
    color:  white;
    font-size: 25px;
    right: 10px;
    top: 10px;
    background-color: transparent;
    border: none;
} 