.modalbutton-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 1;
    animation: show .5s ease;
    overflow-x: hidden;
    overflow-y: hidden;
}

.modalbutton-modal  {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: stretch;
    background-color: #fff;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
    overflow-y: hidden;
    height: 100%;
    border: 1px solid #115193;
}

.modalbutton-caption {
    display: flex;
    font-weight: bold;
    background-color: #115193;
    color: white;
    flex-flow: row;
    justify-content: flex-start;
    padding: 1rem;
    flex-shrink: 0;
    flex-grow: 0;
}

.modalbutton-content {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    overflow-y: auto;
}

.modalbutton-close {
    margin-left: auto;
    color: white;
}
