/* .button-group {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
} */

.button-group button {
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px;
}

.button-group button:hover {
    cursor: pointer;
    box-shadow: 0 0 10px 0 #ccc;
}

.dialog-container {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translateX(-50%) translateY(-50%);
    width: 430px;
    background: #fff;
    padding: 10px;
    border: 2px solid #ddd;
    box-shadow: 1px 1px 5px 1px #ccc;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.2s linear 0s;
    z-index: 999;
}

/* .dialog-header {
    padding: 10px;
    font-weight: bold;
    background: #2596be;
    color: #f6f7f8;
} */
.dialog-header {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    background: #2596be;
    color: #f6f7f8;
}

.dialog-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.dialog-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.close {
    float: right;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #000;
    opacity: .5;
}

button.dialog_btn {
    background-color: #2596be;
    color: #fff;
    padding: 10px 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    margin: 0.5rem;
}


.dialog-body {
    padding: 10px;
    line-height: 30px;
}

.dialog-footer {
    text-align: center;
    background: #fff;
    padding: 3px 0;
}

.dialog-footer a {
    display: inline-block;
    width: 100px;
    padding: 5px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #eee;
    cursor: pointer;
}

.dialog-footer a:active {
    box-shadow: inset 2px 2px 4px 0 #ccc;
    color: #666;
}