/******************************************** Do wyskakujących okien *************************************/
.modal_tlo {
	position: fixed;
	top: -32%;
	left: -10%;
	width: 120%;
	height: 160%;
	z-index: 1001;
	display: flex;
	align-content: center;
}

.modal_tlo.szare {
	background-color: rgba(0, 0, 0, 0.5);
}

.modal_okno {
	max-width: 95vw;
	margin: auto;
	box-sizing: border-box;
}

.modal_okno:not(.ukryty) {
	padding: 1.35rem;
	background-color: white;
	box-shadow: 0 0 20px #333;
	border-radius: 10px;
	border: 1px solid var(--maincolor);
}

.modal_okno pre {
	max-width: 512px; 
	max-height: 50vh;
	font-size: larger;
	overflow-y: auto;
}

.modal_okno img {
	display: block;
	width: 100%;
	max-width: 1024px;
	max-height: 60vh;
}

.modal_okno img.beztla {
	filter: drop-shadow(0 0 20px #333);
}

.modal_okno img.pelny-ekran {
	max-width: 90vw;
	max-height: 90vh;
}

.modal_okno object.pdf {
	width: 50rem;
	max-width: 90vw;
	height: calc(90vh - 4rem);
}

.modal_okno .klikalny:hover {
	cursor: pointer;
}

.modal_opcje {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin-top: 1.35rem;
}

.modal_przycisk {
	padding: 5px 15px 5px;
	margin: 0 5px 0;
	border: 1px solid var(--maincolor);
	border-radius: 10px;
	min-width: 45%;
	font-size: larger;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
}

.modal_przycisk:hover {
	cursor: pointer;
	background-color: var(--maincolor);
	color: white;
}

.modal_okno select {
	width: 100%;
	margin: 1rem 0 0;
}

.modal_okno input {
	width: 6rem;
	margin: 1rem auto 0;
	text-align: center;
	display: block;
}

/******************************************** Duży napis *************************************/
.modal_duzy_napis {
	width: 100%;
	box-sizing: border-box;
	margin: auto;
	font-size: 100px;
	padding: 25px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--maincolor);
	transition: 0.25s;
	box-shadow: 0 0 20px #333;
	text-transform: uppercase;
}

.modal_duzy_napis.maly {
	opacity: 0.01;
	font-size: 0.2em;
}

/*************************************************************************************************/

@media screen and (max-width: 900px) {
	.modal_duzy_napis {
		font-size: 40px;
	}
}
