
/* Окно */
#modal_form {
 width: 80%;
height: 100vh;
 position: fixed; 
 top: 0; 
 left: 0; 
 margin:0 0 0 0; 
	display: none; 
 opacity: 0; 
 z-index: 99999; 
     padding: 40px;
	background: rgba(148,161,170, 0.9);
}
 

 
 
 
 
#modal_close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 40px;
right: 40px;
  cursor: pointer;
  display: block;
  font-size: 50px;
  background-image: url(/wp-content/themes/razom/design/search-close.svg);
  background-size: cover;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  margin-top: -10px;
}
		
	
#modal_close:hover {
-webkit-transform: rotate(180deg);
          transform: rotate(180deg);
	
}	
		
/* Подложка */
#overlay {
 z-index: 99998;
 position: fixed;
 background-color: #fff; 
opacity: 0.1; 
 width: 100%; 
 height: 100%; 
 top: 0; 
 left: 0; 
 cursor: pointer;
 display: none; 
}