.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000ec;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    padding-top: 4rem;
    z-index: 99999999999999;
    overflow-y: scroll;
}

.modal-hide  {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 4px;
    box-shadow: 1px 0.5px 10px #00000025;
    width: 600px;
    max-width: 100%;
}

.modal-title {
    padding: 1rem;
    border-bottom: 1px solid #838383;
}

.modal-data {
    padding: 1rem;
}