#svg {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
    max-width: 1440px;

}
.modal {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    max-width: 300px;
    position: fixed;
    z-index: 30;
    box-shadow: 0 3px 10px -.5px rgba(0, 0, 0, .2);
    z-index: 1000;
    padding: 1rem;
    border-radius: 3px;
    background-color: #fff;
    /*transition: 0.5s all;*/
}
.modal_close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 5px;
    right: 5px;
    fill: #444;
    cursor: pointer;
}


.info_wrapper {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}
.modal.active {
    opacity: 1;
    visibility: visible;

}