﻿/* MsgBox*/
.msgbox {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 400px; /* Location of the box */
    padding-left: 0px;
    padding-right: 200px;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.msgbox_content {
    margin-left: 300px;
    padding: 20px;
    width: 600px;
    background: #FFFFFF;
    box-shadow: 0 0 24px 0 rgba(0,0,0,0.22), 0 24px 24px 0 rgba(0,0,0,0.30);
    border-radius: 2px;
    font-family: Verdana;
    font-size: 16px;
    color: rgba(0,0,0,0.54);
    line-height: 24px;
}

/* The Close Button */
.msgbox_close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.msgbox_close:hover,
.msgbox_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.msgbox_btns_ok
{
    left: 485px;
}

.msgbox_btns_cancel
{
    left: 475px;
}

.msgbox_btns, .msgbox_btns_ok, .msgbox_btns_cancel
{
    font-family: Verdana;
    font-size: 14px;
    color: #AACD1C;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration:none;
    overflow:hidden;
    text-overflow:ellipsis;
    word-wrap: break-word;
}

.msgbox_btns:hover,.msgbox_btns:focus,
.msgbox_btns_ok:hover, .msgbox_btns_ok:focus,
.msgbox_btns_cancel:hover, .msgbox_btns_cancel:focus
 {    
    text-decoration: none;
    cursor: pointer;
}
.msgbox_header
{
    font-family: Verdana;
    font-size: 20px;
    color: rgba(0,0,0,0.87);
    letter-spacing: 0;
    line-height: 28px;
    word-break:break-word;
}
@media only screen and (max-height : 800px) {
    .msgbox {
        padding-top: 200px;
    }
}
@media only screen and (max-width : 1005px) 
{
        .msgbox_content {
        margin-left: 60px;
    }
}
