/* Demo */

.slickModal.contactForm .slickWindow * {
	text-align: center;
}
.slickModal.contactForm .slickWindow .title {
	font-size: 30px;
	font-weight: 700;
}
.slickModal.contactForm .slickWindow .title,
.slickModal.contactForm .slickWindow p {
	color: #fff;
	opacity: 1;
}
.slickModal.contactForm .slickWindow .topIcon {
	content: "";
	display: block;
	background: url("down.png") 0 0 no-repeat;
	width: 32px;
	height: 32px;
	margin: 20px auto 20px auto;
}
.slickModal.contactForm .slickWindow form {
	display: block;
	margin: 30px 0;
}
.slickModal.contactForm .slickWindow input,
.slickModal.contactForm .slickWindow textarea,
.slickModal.contactForm .slickWindow form input.send {
	border-style: solid;
	border-color: transparent transparent #fff transparent;
	border-width: 1px;
	font-size: 12px;
	color: #fff;
	background: transparent;
	display: block;
	width: 100%;
	padding: 12px;
	margin-bottom: 16px;
	text-align: left;
}
.slickModal.contactForm .slickWindow form input.send {
	background: #ef6161;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	border: none;
	margin-top: 30px;
	display: block;
	text-align: center;
    cursor: pointer;
	border-radius: 5px;
}
.slickModal.contactForm .slickWindow form input.send:hover {
	background: #fff;
	color: #222;
}
.slickModal.contactForm .slickWindow .bottomClose {
	font-weight: 700;
	color: #fff;
	font-size: 12px;
}
#errorMsg {
    color: #ef6161;
    font-size: 12px;
    font-weight: 700;
    display: block;
}

/* ========================
   Responsive queries
   ======================== */

/*
   Note: Media queries use breakpoints upon which the target elements change their settings/values. Below is an example which sets the modal window to 96% of screen width and the inner title font size at 24px when screen viewport is at 480px width or below (mobiles, low-res tablets etc). You can target specific viewport width, height, their min/max breakpoints, media types and other settings. Within those rules you can then adjust every element and it's css attributes.

   Check out more at:
   http://www.w3schools.com/cssref/css3_pr_mediaquery.asp
*/

    /* Let's center the close icon */
    .slickModal.contactForm .close.icon {
    	right: 0;
    	left: 0;
    	margin: 0 auto;
    }
	
@media screen and (max-width: 480px) {
    /* Reduce the size of the main title */
    .slickModal.contactForm .slickWindow .title {
    	font-size: 24px;
    }
}
@media screen and (max-height: 480px) {
	/* Show the scrollbars so the user can scroll down the modal's content */
    .slickModal.contactForm {
    	overflow: scroll;
    }
    /* Stick the overlay so it covers whole screen */
    .slickModal.contactForm .overlay {
    	position: fixed;
    }
}