/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16-Jun-2016, 08:34:22
    Author     : kadamiec
*/



.popupblack {
    position: fixed;
    width:100%;
    height:100%;
    background-color: black;
    opacity: 0.7;
    z-index:99999;
    display:none;
}


.popupwhite {
    position:fixed;
    width:600px;
    height:392px;
    background-color:#fafafa;
    z-index:999999;
    display:none;
    left:50%;
    margin-left:-300px;
    top:7%;
    
    border-top:8px solid #fb8f00;
    
    -webkit-box-shadow: 0px 0px 24px 7px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 24px 7px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 24px 7px rgba(0,0,0,0.75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;        
}


.popupwhite h3 {
    font-size:23px;
    margin-top:30px;
    color:#2a2a2a;
}