﻿.wolverine-mask {
    background: url("overlay.png");
    height: 100%;
    left: 0;
    opacity: 0.9;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 8999;
    display: none;
}

.wolverine-popup {
    font-family: Arial;
    background-color: #eee;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 5px 5px #393939;
    left: 50%;
    margin: 0 auto 0 -150px;
    padding: 10px;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 300px;
    z-index: 9000;
    display: none;
}

    .wolverine-popup .title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .wolverine-popup .message {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .wolverine-popup .button {
        background-color: #ff6a00;
        border-radius: 5px;
        box-shadow: 0 0 2px 2px #ccc;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        height: 30px;
        line-height: 30px;
        margin-left: 5px;
        text-align: center;
        width: 40%;
    }

    .wolverine-popup .buttons-wrapper {
        margin: 0 auto;
    }

        .wolverine-popup .buttons-wrapper .clear-fix {
            clear: both;
        }

        .wolverine-popup .buttons-wrapper .button.cancel {
            display: none;
        }
