/*
 * Document   : popup.css
 * Project    : Optimum
 * Author     : Gyurman Attila <attila.gyurman@ilx.hu>
 *		Horváth Tamás  <tamas.horvath@ilx.hu>
 * Created on : 2014.02.28. 13:47:45
 * Description: 
 */


.popup {
    font: 16px 'Open Sans',Arial, Helvetica, sans-serif;
    position: absolute;
    left: 10px;
    top: 10px;
    width: 200px;
    height: 200px;
    background-color: white;
    color: black;
    display: none;
    z-index: 100000;
    -webkit-box-shadow: 0px 0px 29px rgba(0, 0, 0, 0.46);
    -moz-box-shadow: 0px 0px 29px rgba(0, 0, 0, 0.46);
    box-shadow: 0px 0px 29px rgba(0, 0, 0, 0.46);    
}

.popup .popup-content {
    
}

.popupoverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0.8;
    top: 0px;
    left: 0px;
    background-color: #e5e5e5;
    background-image: url('../../../images/login/bg_switch_lines.png');
    background-repeat: no-repeat;    
    z-index: 100000;
}

.popup-footer {
    background-color: #f9f9f9;
    position: absolute;
    bottom: 0px;
    height: 88px;
    overflow: hidden;
    width: 100%;
    border-top: 1px solid #f0f0f0;    
    overflow: hidden;
}

.popup-footer-buttons {
    text-align: center;
    margin: 0px auto 0px auto;    
}

.popup-footer-buttons button {
    margin: 16px 10px 10px 10px;
}

.popup .popup-title-container {
    margin: 10px;
}

.popup .popup-title {
    padding: 0px 0px 0px 0px;
    height: 50px;
    border-top: 1px dashed #e1e2e2;
    border-bottom: 1px dashed #e1e2e2;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;    
}

.popup .popup-title-bg {
    font: 22px 'Open Sans',Arial,Helvetica,sans-serif;
    color: #181864;
    height: 24px;
    background-image: url('../../../images/common/switch_lines_bg.png');
    background-position: 0px 0px;
    background-repeat: repeat;
    padding: 5px 0px 8px 10px;
    margin: 5px 0px 5px 0px;    
}