.Modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    /*background-color: rgba(0,0,0,0.8);*/
    background-color: rgba(13, 13, 30, 0.59);
    z-index: 99999; /*5*/
}

.Modal__show {
    display: flex;
}

.Modal__card {
    position: relative;
    width: 100%;
    max-height: 100%;
    max-width: 800px;
    background-color: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.Modal__header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    /*border-bottom: 1px solid rgb(187, 187, 187);*/
}

.Modal__footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top: 1px solid rgb(187, 187, 187);
}

.Modal__close {
    color: #343a40;
    font-size: 40px;
    font-weight: 400;
    cursor: pointer;
    line-height: 1;
}

.Modal__title {
    font-size: 20px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.Modal__body {
    /*display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;*/
    width: 100%;
    max-height: calc(100% - 130px);
    overflow-y: auto;
}

.Modal__container {
    display: flex;
    width: 100%;
    padding: 15px;
    flex-direction: column;
}