body,html{
	margin:0;
	padding:0;
}
.overlay{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 99;
	background-color: rgba(158, 158, 158, .8);
	top:0;
	display: none;
}
.modal_window{
	    position: absolute;
    width: 540px;
    height: 400px;
    background-color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    justify-content: space-between;
}





.close_modal{
	position: absolute;
	top:10px;
	right:10px;
	width: 14px;
	cursor: pointer;
	height: 14px;
}
.modal_offer_logo img{
	    width: 130px;
    height: 40px;
    display: block;
}
.modal_offer{
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.modal_button a{
	display: block;
	background: #0033cc;
	width: 150px;
	height: 50px;
	line-height: 50px;
	color:#fff;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	transition: .3s;
	text-decoration: none;
	border-radius: 3px;
}
.modal_button a:hover{
	background: #990099;
}
.modal_offer_title{
	padding: 15px 20px;
	background-color: #0033cc;
	color:#fff;
	max-height: 70px;
}
.modal_offer{
	max-height: 100px;
	align-items: center;
	border-bottom: 1px solid #0033cc;
}
.modal_text{
	font-weight: 700;
	color:#333;
	font-size: 20px;
}
.modal_offer_title{
	text-align: center;
	width: 100%;
	font-size: 17px;
}
.thead{
	font-size: 13px;
}
@media(max-width: 767px){
	.modal_offer{
		flex-wrap: wrap;
		padding: 15px 0;
	}
	.modal_window{
		width: 95%;
		height: auto;
	}
}