.dialog-overlay {
    background-color: rgb(119, 119, 119);
    opacity: 0.7;
    cursor: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

.dialog-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    -webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75);
    background: #fff;
    width: 500px;
    height: auto;
    display: block;
    padding: 20px;
}

.dialog-close {
    background: url(/static/img/fancy_close.png) center center no-repeat;
    height: 30px;
    width: 30px;
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer;
}

.dialog-wrapper {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}

.dialog-wrapper__buttons {
    text-align: center;
    margin-top: 20px;
}

.dialog-wrapper__buttons__yes {
    text-decoration: none;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 30px;
    font-size: 14px;
    color: #000;
    border: none;
    border-radius: 3px;
    background: #fbdd0d;
    background: -webkit-linear-gradient(top, #fbdd0d 0%,#f4ba29 75%);
    background: linear-gradient(to bottom, #fbdd0d 0%,#f4ba29 75%);
    cursor: pointer;
    outline: 0;
}

.dialog-wrapper__buttons__no {
    text-decoration: none;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 30px;
    font-size: 14px;
    color: #000;
    border: none;
    border-radius: 3px;
    background: #E3E3E3;
    background: -webkit-linear-gradient(top, #E3E3E3 0%, #d7d7d7 75%);
    background: linear-gradient(to bottom, #E3E3E3 0%,#d7d7d7 75%);
    cursor: pointer;
    outline: 0;
    margin-left: 10px;
}