/*Modal*/
.modal_window{
	display: block;
	width: 600px;
	max-width: 100%;
	height: 400px;
	max-height: 100%;
	position: fixed;
	z-index: 100;
	left: 50%;
	top: 50%;
	/* Центруем */
	transform: translate(-50%, -50%);
	background: rgb(25, 72, 158);
	box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
	z-index:1000
  }

.modal_window button {
    float: right;
    margin-bottom: 20px;
}
