﻿/**
* Procházení fotogalerie
* 
* Knihovna pro procházení fotogalerie
* 
* @category   GUI knihovna
* @copyright  Copyright (c) 2012 Foxtrot Technologies s.r.o. (www.foxtrot.cz)
* @version    1.0, 2017-03-08
*/

#PP_modal_cont {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7); 
}

.PP_modal_dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #eee;
    color: black;
    border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px 6px;
    -webkit-border-radius: 6px 6px 6px 6px;
    border: 1px solid #000000;    
    text-align: left;
    font-weight: normal;
    font-size: 9pt;
    overflow: hidden;
    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;          
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);     
    z-index: 8991;     
    padding: 0.5rem;
    box-sizing: border-box;
}

#PP_photo_preview {
    max-width: 80%;
    max-height: 80%;
}

#PP_move_left_icon, #PP_move_right_icon, #PP_close_preview_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: none;
    width: 41px;
    height: 41px;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 8992;
    border: solid 1px #fff;
}

#PP_move_left_icon {
    background: url("images/move_left_icon.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #dfdfdf;
}

#PP_move_right_icon {
    background: url("images/move_right_icon.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #dfdfdf;
}

#PP_close_preview_icon {
    border: solid 1px #fff;
    background: url("images/close_preview_icon.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #dfdfdf;
}