.confirm {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2147483647;
}

.confirm-mask {
    display: block;
    background-color: rgba(0,0,0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.confirm__closed {
    display: none;
}

.confirm-gap {
    position: relative;
    margin: 20px auto;
    width: 25%;
    min-width: 600px;
    color: #000;
    background: #fff;
    padding: 8px;
    overflow: hidden;
}

.confirm-message {
    padding: 28px;
    min-height: 20px;
    overflow-y: scroll;
    max-height: 600px;
}

.confirm-closer {
    cursor: pointer;
    font-size: 0;
    position: absolute;
    right: 10px;
    top: 8px;
    display: block;
    height: 12px;
    width: 12px;
}

.confirm-buttons {
    margin-top: 10px;
    text-align: right;
    overflow: hidden;
}

.confirm-button {
    position: relative;
    cursor: pointer;
    border: 1px solid #c7c7c7;
    border-radius: 5px;
    box-sizing: border-box;
    display: inline-block;
    padding: 5px 10px;
    line-height: 1;
    width: auto;
    background: #e3e5ea linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.confirm-button__cancel {

}

.confirm-button__accept {
    margin-left: 10px;
    float: right;
}
