/*******************************************************************************
 * plato.popup css
 * 
 * Copyright (c) 2013, PLATO AG.
 *
 */

/**
 * Overlay
 */

.plato-popup-overlay {
    /* using ui-widget-overlay! */
}

/**
 * Loading
 */
 
.plato-popup-loading {
    width: 50px;
    height: 50px;
    background: #FFF no-repeat 13px 13px;
    background-image:url(img/waiting_24x24.gif);
    display: block;
    position:fixed;
    top: 40%;
    left: 50%;
    margin: -25px 0 0 -25px;
/*    z-index: 1150;*/
    border: solid 1px #FFF;
    
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

/**
 * Wrapper
 */

.plato-popup-wrapper{
    display: none;
    position: absolute;
    width: auto;
    height: auto;
}

/**
 * Content
 */

.plato-popup-content {
}

/**
 * Close
 */

a.plato-popup-close {
    width: 16px;
    height: 16px;
    background: url(img/icon_close_red.png) 0 0 no-repeat transparent;
    position: absolute;
    z-index: 1300;
    display: none;
    border-color:#FFF;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
}

a.plato-popup-close:hover {
    background-position: 0 -16px;
}

/**
 * Misc
 */

.ui-plato-shadow {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}