.discardDialog  .content {
    z-index: 11;
    color: rgb(15, 15, 15);
    font-family: OpenSans-Medium, Arial, Helvetica, sans-serif;
    line-height: 23px;
    background-color: #fff;
    font-size: 15px;
    text-align: center;
    padding: 32px 16px 34px;
}

.discardDialog  .buttons {
    z-index: 11;
    display: flex;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #111110;
    font-family: OpenSans-SemiBold, Arial, Helvetica, sans-serif;
    font-weight: normal;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    border-right: 1px solid #efefef;
    letter-spacing: 1px;
}

.discardDialog .continue,
.discardDialog .discard {
    z-index: 11;
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #111110;
    font-family: OpenSans-SemiBold, Arial, Helvetica, sans-serif;
    font-weight: normal;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    border-right: 1px solid #efefef;
    border-top: 1px solid #efefef;
    letter-spacing: 1px;
}

.discardDialog .continue {
    color: #0f0f0f;
}
.discardDialog .discard {
    color: #888;
}
.discardDialog .dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: calc(100vh - 100px);
    border: 1px solid #efefef;
    background-color: #fff;
    max-width: 343px;
    overflow: hidden;
    animation-fill-mode: both;
    box-sizing: border-box;
    border-radius: 4px;
    width: 100%;
    z-index: 100;
}
.ClickButton {
    text-align: center;
    width: 100px;
    height: 50px;
    line-height: 50px;
    background-color: #888;
    margin: 200px auto 0 auto;
    z-index: 11;
}
.discardDialog.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 99;
}