/* alert
	========================================================================== */
.modal-alert
{
    /*position: fixed;*/
    position: absolute;
    z-index: 1000;
    top: 60px;
    left: 50%;

    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
    width: 220px;
    margin-left: -140px;
    padding: 20px 30px 25px;

    border: 1px solid #31935d;
    background: #0f2f2d;
}
.modal-alert h1
{
    font-size: 22px;

    margin-bottom: 15px;

    text-align: center;

    color: #dbffe8;
    text-shadow: 0 0 10px #31935d, 0 0 10px #31935d, 0 0 10px #31935d;
}
.modal-alert p
{
    line-height: 1.5;

    margin-bottom: 15px;

    color: #fff;
}
.modal-alert li a
{
    font-size: 20px;

    display: block;

    padding: 10px;

    text-align: center;

    color: #dbffe8;
    border: 1px solid #fff;
    -webkit-border-radius: 10px;
            border-radius: 10px;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .75) inset, 0 0 2.5px #31935d;
            box-shadow: 0 0 4px rgba(0, 0, 0, .75) inset, 0 0 2.5px #31935d;
    text-shadow: 0 0 10px #31935d, 0 0 10px #31935d, 0 0 10px #31935d;
}
.modal-alert li:not(:last-child)
{
    margin-bottom: 15px;
}

.modal-overlay
{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .75);
}
