@font-face {
    font-family: 'Myriad Pro Bold';
    src: url(/fonts/MyriadPro-Bold/MyriadPro-Bold0.woff),
	url(/fonts/MyriadPro-Bold/MyriadPro-Bold0.ttf),
	url(/fonts/MyriadPro-Bold/MyriadPro-Bold0.eot);
}

div.contact_win{
	position: absolute;
	width: 660px;
	height: 580px;
	top: 50%;
	left: 50%;
	margin-top: -290px;
	margin-left: -330px;
	background-color: #d8dee4;
	padding-bottom: 30px;
}

#contact_title_bar{
	background-color: #78559e;
	width: 100%;
	color: #FFFFFF;
	text-align: center;
	font-family: Arial;
	font-size: 26px;
	height: 79px;
	line-height: 79px;
	margin-bottom: 10px;
}

input.contact, textarea.contact, select{
	width: 550px;
	height: 40px;
	border: solid 1px #cccccc;
	border-radius: 5px;
	padding: 10px;
	margin-top: 10px;
	box-sizing: border-box;
	font-size: 18px;
	font-family: "Arial";
}

textarea.contact{
	height: 197px;
}

div.contact_send_button{
	display: inline-block;
	cursor: pointer;
	margin-top: 38px;
	height: 50px;
	padding: 0 50px;
	line-height: 50px;
	background-color: #78559e;
	color: #ffffff;
	font-family: 'Myriad Pro Bold';
	font-weight: bold;
	font-size: 28px;
}

#contact_cont{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	text-align: center;
}
img.video_frame{
	position: absolute;
	top: 8px;
	right: 8px;
	width: 23px;
	height: 23px;
	cursor: pointer;
}

.red_bg{
	animation-name: red_background;
	animation-duration: 1s;
	animation-iteration-count: 1;
	background-color: #ffc3c3;
}

@keyframes red_background {
	from {background-color: #FFFFFF;}
	20% {background-color: #ffc3c3;}
	40% {background-color: #FFFFFF;}
	60% {background-color: #ffc3c3;}
	80% {background-color: #FFFFFF;}
	to {background-color: #ffc3c3;}
}

@media screen and (max-width: 700px){
	div.contact_win{
		width: 300px;
		height: 420px;
		margin-left: -150px;
		margin-top: -240px;
	}
	
	input.contact, textarea.contact, select{
		width: 280px;
	}
	
	div.contact_send_button{
		margin-top: 10px;
	}
	
	#contact_title_bar{
		height: 40px;
		line-height: 40px;
		margin-bottom: 0;
	}
	
	textarea.contact{
		height: 120px;
	}
}


