.WInModal{
  background: rgba(0,0,0,0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;

}
.WInModal .Win{
  width: 360px;
  height: 120px;
  margin: auto;
  position: relative;
  top: 50%;
  margin-top: -60px;
  background: #fff;
  color: #000;
  /*border-radius: 10px;*/
  border: solid 1px #000;
  /box-shadow: 2px 2px 5px rgba(0,0,0,0.5); */
}
.WInModal .Close{
  position: absolute;
  right: 5px;
  top: 5px;
  width: 12px;
  height: 12px;
  cursor: pointer;
  color: #888888;
  background: url(close-button.png)no-repeat;
  background-size: contain;
}
.WInModal .Print{
	position: relative;
	top: 20px;
	width: 300px;
	margin: auto;
	font-size: 14px;
	min-height: 60px;
	text-align: center;
}
.WInModal .Buttons{
	margin-top: 8px;
	display: flex;
	justify-content: center;
}
.WInModal .Buttons .but{
	min-width: 60px;
	font-size: 14px;
	padding: 0px 12px;
	height: 35px;
	line-height: 35px;
	background: linear-gradient(to top, #00b7ff, #8ad7f5);
	color: #fff;
	cursor: pointer;
	text-align: center;
	
}
.WInModal .Buttons .but:hover{
	background: linear-gradient(to top, #037dad, #67c7ec);
}
.WInModal .Close:hover{
  color: #000;
}
