.ZebraDialog_NoScroll {
    position: fixed;
    left: 0;
    top: 0
}
.ZebraDialog * {
    -moz-box-sizing: content-box!important;
    -webkit-box-sizing: content-box!important;
    box-sizing: content-box!important
}
.ZebraDialog,
.ZebraDialog_Body,
.ZebraDialog_Buttons a,
.ZebraDialog_Title {
    margin: 0;
    padding: 0;
    text-align: left;
    position: relative;
}
.ZebraDialog {
    max-width: 100%;
    z-index: 1001
}
@media (max-width:574px) {
    .ZebraDialog {
        width: 100%
    }
}

.ZebraDialog_Icon .ZebraDialog_Body:before {
    font-family: 'Font Awesome 6 Pro';
    content: '\f0a4';
    font-size: 22pt;
    color: white;
    font-weight: bold;
    border-radius: 300px;
    position: absolute;
    left: 15px;
    top: 15px;
    height: 52px;
    width: 52px;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.ZebraDialog_Confirmation .ZebraDialog_Body:before {
    content: '\f0a4'; /* hand-point-right */
    background: #ff6a00;
}
.ZebraDialog_Confirmation .ZebraDialog_Title {
    background: #ff6a00;
    color: white;
}

.ZebraDialog_Error .ZebraDialog_Body:before {
    content: '\f00d'; /* times */
    background: #ff5050;
}
.ZebraDialog_Error .ZebraDialog_Title {
    background: #ff5050;
    color: white;
}

.ZebraDialog_Information .ZebraDialog_Body:before {
    content: '\f129'; /* infocircle */
    background: #74a0c0;
}
.ZebraDialog_Information .ZebraDialog_Title {
    background: #74a0c0;
    color: white;
}

.ZebraDialog_Question .ZebraDialog_Body:before {
    content: '\f128'; /* question */
    background: #74c09d;
}
.ZebraDialog_Question .ZebraDialog_Title {
    background: #74c09d;
    color: white;
}

.ZebraDialog_Warning .ZebraDialog_Body:before {
    content: '\f12a'; /* exclamation */
    background: #7b1c00;
}
.ZebraDialog_Warning .ZebraDialog_Title {
    background: #7b1c00;
    color: white;
}

.ZebraDialog_Prompt .ZebraDialog_Body:before {
    content: '\f4ad'; /* comment-dots */
    background: #7ba300;
}
.ZebraDialog_Prompt .ZebraDialog_Title {
    background: #7ba300;
    color: white;
}

.ZebraDialog_Buttons_Centered .ZebraDialog_Buttons {
    text-align: center;
}
a.ZebraDialog_Close {
    background: 0 0;
    font-family: arial,sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin-top: -15px;
    position: absolute;
    text-decoration: none;
    top: 50%;
    cursor: pointer;
}

a.ZebraDialog_Close:hover {
    background: none;
}

a.ZebraDialog_Close::after {
    font-family: 'Font Awesome 6 Pro';
    content: '\f00d';
    font-size: 1.4rem;
    color: #ffffffb5;
}

a.ZebraDialog_Close:hover::after {
    font-size: 1.5rem;
    color: #707070;
}


.ZebraDialog_NoTitle .ZebraDialog_Close {
    top: 0;
    margin-top: 0;
}
.ZebraDialogBackdrop {
    background: #666;
    height: 100%;
    z-index: 1000;
    width: 100%;
}
.ZebraDialog,
.ZebraDialog_Body,
.ZebraDialog_Buttons a,
.ZebraDialog_Title {
    font-family: Helvetica,Tahoma,Arial,sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}
.ZebraDialog_Spinner {
    background: url(spinner.gif) center center no-repeat;
    height: 32px;
}
.ZebraDialog_Spinner.ZebraDialog_iFrame {
    left: 50%;
    margin-left: -16px;
    margin-top: -16px;
    position: absolute;
    top: 50%;
    width: 32px;
    z-index: 2;
}
.ZebraDialog {
    background: #fff;
    /*border: 1px solid #dedede;*/
    border-radius: 5px;
}
.ZebraDialog_Title {
    position: relative;
    border-bottom: 1px solid #00000030;
    color: #707070;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 15px;
    border-radius: 5px 5px 0 0;
}
.ZebraDialog_Body {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    color: #44484a;
    margin: 10px;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ZebraDialog_Icon .ZebraDialog_Body {
    padding-left: 90px;
    min-height: 64px;
}
.ZebraDialog_Prompt_Input {
    width: 100%;
    -moz-box-sizing: border-box!important;
    -webkit-box-sizing: border-box!important;
    box-sizing: border-box!important;
    padding: 8px;
    margin: 10px 0 0;
    border: 1px solid #cbcbcb;
    color: #44484a;
    border-radius: 3px;
}
.ZebraDialog_Buttons {
    text-align: right;
    padding: 10px 5px 10px 10px;
}
.ZebraDialog_Buttons a {
    display: inline-block;
    white-space: nowrap;
    zoom: 1;
    /*display: inline;*/
    background: #86BB6B;
    color: #fff;
    font-weight: 700;
    margin-right: 5px!important;
    margin-left: 5px;
    min-width: 60px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}
.ZebraDialog_Buttons a:hover {
    background: #75A25E;
    color: #fff;
}
.ZebraDialog_Close {
    color: #888;
    right: 10px;
}
.ZebraDialog_Close:focus,
.ZebraDialog_Close:hover {
    color: #000;
}

/* Cancel Button */
a.ZebraDialog_Button_1 {
    background:#CA3C0C;
}
a.ZebraDialog_Button_1:hover {
    background:#8E2B09;
}