/* ===== ОФОРМЛЕНИЕ "ВХОДНОГО" ОКНА С новым годом ===== */


#wrapWindow {
	position: fixed;
	top: 0; left: 0;
	z-index: 1000;
	
	width: 100vw;
	height: 100vh;
}
#wrapWindow {display: none;}
.wrapWindowNY {
	background: rgba(236,249,242, .4);
	width: 100vw;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;
}

#Close{
	position: absolute; border: 0px solid yellow;

/*	font-family: 'Arial', sant-serif;*/
	font-family: 'Didact Gothic', sans-serif;
	font-weight: bolder;
	text-align: center;
}

#Close {
	top: 5px;
	right: 5px;

	width: 30px;
	height: 30px;
}


/*  //////////////////// Для GIF-окна ////////////////////  */

.windowBackNoise {
	background-image: url(../images/window-HappyNY2026.jpg);
	
	height: 90vh;
	width: calc((9 / 16) * 90vh);

	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;

	position: relative;
}

/* @media (orientation:portrait) */ 
@media screen and (max-width: 501px) {
	.windowBackNoise {
		height: calc((16 / 9) * 90vmin);
		width: 90vmin;
	}
}
/* @media for (orientation:landscape) width calc*/
@media screen and (min-width: 501px) and (max-height: 890px) { 
	.windowBackNoise {
		width: calc((9 / 16) * 90vmin);
		height: 90vmin;
	}
}

/*  //////////- КРЕСТИК (кнопка ЗАКРЫТЬ) -//////////  */
.buttonClose {
	border: 1px solid transparent; 	
	height: 30px;
	width: 40px; 
	background: transparent;
 }

.buttonClose:hover { cursor: pointer; }

.buttonClose div{
	border-radius: 1px;
	width: 28px;
	margin-right: 4px;
}

/* крестик */ 
.crossLine1 {
	border: 1px solid; 
	margin-top: 4px;
	transform: rotate(45deg);
}
.crossLine2 {
	border: 1px solid; 
	margin-top: -2px;
	transform: rotate(-45deg);
}

/* цвет крестика */
.crossGreen {border-color: #118f45; background: rgba(17,143,69,1);}
.crossBlack {border-color: #000; background: rgba(0,0,0,1);}
/*  ---------- END КРЕСТИК (кнопка ЗАКРЫТЬ) ----------  */

















