.popup {
    min-width: 480px;
    min-height: 180px;
    padding: 15px;
    left: 0;
    margin-left: 33.333333%;
    background: white;
    position: absolute;
    top: 25%;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(120, 191, 3, 1);
    border-radius: 1px;
    z-index: 10001;
}

.popup-title {
    font-size: 19px;
    font-weight: 700;
    text-align: left;
    margin: 0;
}

.popup-content {
    font-size: 16px;
}

.overlay {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 10000;
}

@media (min-width: 768px) {
    .popup {
        width: 66.66666666%;
        margin-left: 16.666666%;
    }
}

@media (min-width: 992px) {
    .popup {
        width: 50%;
        margin-left: 25%;
    }
}

@media (min-width: 1200px) {
    .popup {
        width: 33.33333%;
        margin-left: 33.33333%;
    }
}

.dialog-button-container {
    font-size: 19px;
    text-align: left;
    float: right;
}

.dialog-btn {
    background: inherit;
    width: 113px;
    height: 40px;
    margin-right: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-style: normal;
    font-size: 19px;
    border-radius: 4px;
    position: relative;
    margin-left: 5px;
    font-weight: bold;
    padding: 6px 20px;
    display: inline-block;
    margin-bottom: 0;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    -webkit-appearance: button;
}

.btn-yes {
    color: #FFFFFF;
    background-color: rgba(120, 191, 3, 1);
    border: 1px solid #8ebc22;
}

.btn-yes:hover,
.btn-yes:focus,
.btn-yes:active {
    color: #fff;
    border-color: #8ebc22;
    background: #98c925;
    text-decoration: none;
}

.btn-no {
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
}

.btn-no:hover,
.btn-no:focus,
.btn-no:active {
    background-color: #eee;
    border-color: #ddd
}
