/*
Custom dialog box css
@author Alex Fraundorf - AlexFraundorf.com - SnapProgramming.com custom written for
@copyright 5 happiness webmaster - 5happy.com
@version 08/28/2014
@since 05/28/2014
*/


/* 
Shadowed screen overlay 
*/
#shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 101%;
    z-index: 9000;
    background-color: #000000;
    opacity: 0.5;
    display: none;
}  


/* 
Dialog pop over 
*/
#dialog {
    position: absolute;
    width: 375px; 
    height: 225px;
    z-index: 9999;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 7px 7px 5px #000000;
    text-align: center;
    display: none;
}


/*
Makes the dialog box take up most of the screen
*/
#dialog.large {
    width: 800px; 
    height: 500px;
    overflow: auto;
}


/* 
Dialog content 
*/
#dialog h4 {
    font-size: 16px;
}


/* 
Disable scrolling on shadowed div 
*/
.no-scroll {
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}