﻿/* 
 * Author: [LJ][15-September-2014][Created.]
 * Description: Styles for the "White" dialog.
 * Update: [DY][15-September-2014][Included the styles.]
 * */

.white-dialog-popup {
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 100008 !important;
    opacity: 0.4 !important;
    filter: alpha(opacity=40) !important;
}

.white-dialog-panel { /* dialog panel */
    width: 100%;
    height: 100%;
    z-index: 1000009 !important;
}

.white-dialog-contanier { /* dialog container */
    min-height: 160px;
    width: 420px;
    margin: 240px auto 0 auto;
    background: #FFF;
    color: #4D5A65;
    position: relative;
    padding-bottom: 60px;
}

.white-dialog-header { /* Header */
    padding: 0 30px;
}

.white-dialog-header-section1 { /* Header section 1 */
    padding: 15px 0 25px 0;
    text-transform: uppercase;
    text-align: center;
    font: 24px/28px Conv_GOTHICB, Arial, sans-serif;
}

.white-dialog-header-section2 { /* Header section 2 */
    text-transform: uppercase;
    font: 11px/20px Arial, Helvetica, sans-serif;
}

    .white-dialog-header-section2 .status {
        display: block;
        width: 60px;
        height: 60px;
        margin: 10px auto;
        background-image: url("../../images/sprite_ad.png");
        background-repeat: no-repeat;
        background-size: auto 60px;
    }

        .white-dialog-header-section2 .status.ok {
            background-position: 0 0;
        }

        .white-dialog-header-section2 .status.ko {
            background-position: -63px 0;
        }

.white-dialog-footer { /* Footer */
    position: absolute;
    overflow: hidden;
    left: 0;
    bottom: 0;
    background: #fff;
    width: 100%;
    height: 60px;
}

    .white-dialog-footer a {
        color: #4D5A65;
        height: 30px;
        padding: 0;
        margin: 13px 20px 0 20px;
        font: 20px/25px Conv_GOTHIC, Arial, sans-serif;
        text-transform: uppercase;
    }

    .white-dialog-footer .white-dialog-button-single { /* single Ok button */
        display: block;
        text-align: center;
        margin-left: 30px;
        margin-right: 30px;
    }

    .white-dialog-footer .white-dialog-button-ok { /* Ok button */
        float: left;
        margin-left: 30px;
    }

    .white-dialog-footer .white-dialog-button-cancel { /* Cancel button */
        float: right;
        margin-right: 30px;
    }
