.enc-messagebox-overlay {
    z-index: 10000;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
}

.enc-messagebox-container {
    position: absolute;
    z-index: 99999;
    margin: auto;
    text-align: center;
    overflow: hidden;
    padding: 17px;
    padding-bottom: 30px;
    background-color: white;
    border-radius: 5px;
    width: 70%;
    max-width: 500px;
    border-color: #707070;
    background-position: 14px 14px;
    background-repeat: no-repeat;
    box-shadow: 5px 5px 2px rgba(0,0,0,0.3);
}

.enc-messagebox-container h1 {
    margin-top: 40px;
    margin-left: 110px;
    text-align: left;
}

.enc-messagebox-container p {
    margin-bottom: 30px;
    margin-left: 110px;
    text-align: left;
}

.enc-messagebox-stop {
    background-image: url(/site/common/img/msg-stop-lg.png);
}

.enc-messagebox-warning {
    background-image: url(/site/common/img/msg-warning-lg.png);
}

.enc-messagebox-danger {
    background-image: url(/site/common/img/msg-danger-lg.png);
}

.enc-messagebox-information {
    background-image: url(/site/common/img/msg-info-lg.png);
}

.enc-messagebox-success {
    background-image: url(/site/common/img/msg-success-lg.png);
}

.enc-messagebox-question {
    background-image: url(/site/common/img/msg-question-lg.png);
}

.enc-messagebox-button {
    padding: 14px 31px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    border: 1px solid;
    background-color: #c5a15b;
    border-color: #c5a15b;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    user-select: none;
    transition: 0.25s cubic-bezier(0.2, 1, 0.3, 1);
}

.enc-messagebox-button:hover {
    color: #000;
}
.enc-messagebox-button:visited {
    color: #000;
}

