/* Minification failed. Returning unminified contents.
(12,35): run-time error CSS1046: Expect comma, found '0'
(12,39): run-time error CSS1046: Expect comma, found '/'
 */
.confirmation-wrapper {
    position: relative;
    display: inline-block;
}
.input-confirmation {
    cursor: default;
    margin: 0;
    position: absolute;
    left: 25px;
    top: -10px;
    border-radius: 3px;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 16%);
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #f8fbff;
    z-index: 5;
    padding: 5px;
    min-width: 375px;
    display: none;
}
.input-confirmation:before {
    content: " ";
    position: absolute;
    left: -16px;
    top: 13px;
    border: 8px solid transparent;
    border-right: 8px solid rgba(0, 0, 0, 0.15);
}
.input-confirmation:after {
    content: " ";
    position: absolute;
    left: -14px;
    top: 14px;
    border: 7px solid transparent;
    border-right: 7px solid #f8fbff;
}

.confirmation-wrapper.confirming .input-confirmation {
    display: block;
}
.confirmation-wrapper > .confirmation-target {
    pointer-events: none;
}

.confirmation-wrapper.confirmed > .confirmation-target {
    pointer-events: all;
}

.input-confirmation-title {
    font-weight: bold;
    font-size: medium;
    margin: 5px;
}
.input-confirmation-body {
    margin: 5px;
}

.input-confirmation-buttons {
    text-align: right;
}
.input-confirmation-buttons > div {
    display: inline-block;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid black;
    margin: 5px;
    background: white;
    min-width: 50px;
    text-align: center;
    cursor: pointer;
    opacity: 0.75;
}
.input-confirmation-buttons > div:hover {
    opacity: 1;
}

.background-blocker {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5); /* transparent, but still blocks clicks */
    z-index: 4;
    display: none;
}

.background-blocker.active{
    display: block;
}







