/*===== ñòèëè ìîäàëüíîãî îêíà ====*/
.themodal-lock {overflow:hidden;}											/*when modal is opened we're removing scrollbars from the main content*/
.themodal-overlay {
  position:fixed;															/*overlay will stay fixed and will take all the space available*/
  bottom:0;
  left:0;
  top:0;
  right:0;
  z-index:100;
  overflow:auto;															/*if modal content doesn't fit inside the overlay, display scrollbars*/
  -webkit-overflow-scrolling:touch; }										/*allow one-finger iPad scrolling*/
  .themodal-overlay > * {-webkit-transform:translateZ(0px);}				/*fix for iPad glitches*/
.themodal-overlay {
  background:rgba(0, 0, 0, 0.5);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = #7F000000, endColorstr = #7F000000);	/*IE6–IE8*/
  zoom:1;																									/*IE6–IE8*/
  }

/* modal box style, can be anything you want */
.modal {
  background:#eee;
  margin:50px auto 10px auto;
  border:3px solid #666;
  padding:20px;
  display:none; }															/*èñõîäíî - ñêðûò*/
  .modal .close {															/*ññûëêà-êðåñòèê çàêðûòèÿ ìîäàëüíîãî îêíà*/
	position:fixed;
	top:30px;
	right:30px;
	text-decoration:none;
	color:#ffcc00;
	font-size:60px;
	font-weight:bold;
	cursor:pointer;
	display:block;
	}
