/*
Author: Konstantin Polyakov
Date: 2015 - 2016 years
Created for PodNogami
*/

.windowWindow {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.98);/*rgba(162, 191, 205, 0.98);/* /*#a2bfcd;*/
    min-width: 240px;
    max-width: 700px;
    border-radius: 10px 10px 10px 10px;
    opacity:0.98;
    z-index: 1000;
    font-family: sans-serif;
    /* box-shadow: 0 0 25px 6px #a2bfcd; */
    width: 70%;
}
.windowTitle {
    width: 100%;
/*     height: 30px; */
    /* background: linear-gradient(#28609b, #3870aB, #28609b); */
    border-radius: 10px 10px 0 0;
    cursor: move;
	overflow: hidden;
}
.windowTitleText {
	width: calc(99% - 30px);
	color: white;
	padding: 5px 0 0 0;
	font-size:13pt;
	text-align:center;
	display:none;
}
.windowBClose {
    width: 30px;
    border-radius:10px 10px 0 10px;
    /*opacity:0.6;
    background: black;*/
    float: left;
    /*margin-right:-30px; margin-top:-30px;*/
    color: white; text-align: center; padding: 6px;
    position:relative;
    /*box-shadow: 0 0 3px 2px white;*/
    cursor: pointer;
    font-family: sans-serif;
    font-size: 100%;
}
.windowBody {
	padding: 15px;
    display: none;
    font-size: 11pt;
    border-radius: 0 0 10px 10px;
    /* Прокрутка содержимого */
    width: calc(100%);
    max-height: calc(95vh - 64px);
    overflow-y: auto;
}

/* --------------------------------
 *           Gallery
 - *-------------------------------*/

.gallery .windowTitle {
    display: none;
}
.gallery {
    background: #000000a3;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
    max-width: none;
    width: 100%;
    top: 0;
}
.gallery .windowBody {
    padding: 0;
    max-height: none;
    height: 100vh;
}
.gallery .main_image {
    max-height: 100%;
    padding: 50px 0 50px 0;
}
.gallery .buttons {
    position: fixed;
    bottom: 30px;
    width:100%;
}
.gallery .buttons input {
    padding: 5px 25px 5px 25px;
}