.modal-conservatori{
    position: fixed;
    inset: 0;
    width: 100dvw;
    height: 100dvh;
    margin: 0;
    background: rgba(0,0,0,0.5);
    overflow: hidden;
    transition: all ease-out .1s;
    display: grid;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: -1;
}

.modal-wrapper {
    background: white;
    position:relative;
    width: 111rem;
    height: 80%;
    margin: auto;
    border-radius: 1.2rem;
    overflow-y: scroll;
    @media screen and (max-width: 992px) {
        width: 95%;
    }

}

.modal-wrapper button.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    place-content: center;
    padding: 1rem;
    background: black;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    z-index: 9999;
}

