/*
 * Style for confirmation popup
 */


/* Start popups as hidden. This will change when the popup is shown. */
.confirmation-popup {
    visibility: hidden;
    opacity: 0;
    z-index: 10;
}

.confirmation-popup-frame h3,
.confirmation-popup-frame p,
.confirmation-popup-frame a {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

.confirmation-popup-frame a {
    text-decoration: none;
}

.confirmation-popup-frame h3 {
    color: #4c4c4c;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-size: 120%;
    text-transform: uppercase;

    margin-top: 0;
    margin-bottom: 1.5em;
}

.confirmation-popup-dismiss-buttons {
    text-align: right;
    margin-top: 2em;
}

a.confirmation-popup-dismiss-link {
    display: inline-block;
    padding: 4px 30px;
    border-radius: 5px;
    background-color: #754067;
    color: #fff;
    font-size: 90%;
    font-weight: 600;
}

.confirmation-popup-overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(255, 255, 255, .85);
    z-index: 10;
}

.confirmation-popup-frame {
    display: inline-block;
    position: fixed;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 35%;
    border: solid 1px #999;
    width: 400px;
    padding: 30px 40px;
    background-color: #eeeeee;
    box-shadow: 5px 4px 10px 6px rgba(0, 0, 0, 0.12);
}


