/* Demo */

.slickWindow * {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	text-align: center;
}
.slickWindow .title {
	font-size: 30px;
	font-weight: 700;
}
.slickWindow .title,
.slickWindow p {
	color: #fff;
	opacity: 1;
}
.slickWindow .topIcon {
	content: "";
	display: block;
	background: url("down.png") 0 0 no-repeat;
	width: 32px;
	height: 32px;
	margin: 0 auto 20px auto;
}
.slickWindow form {
	display: block;
	margin: 30px 0;
}
.slickWindow input,
.slickWindow textarea,
.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;
}
.slickWindow form input.send {
	background: #ef6161;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 1px;
	border: none;
	margin-top: 30px;
	display: block;
	text-align: center;
}
.slickWindow form input.send:hover {
	background: #fff;
	color: #222;
}
.slickWindow .bottomClose {
	font-weight: 700;
	color: #fff;
	font-size: 12px;
}

.slickWindow {
    overflow: auto;
}
.slickWindow::-webkit-scrollbar {
    width: 6px;
    height: 2px;
}
.slickWindow::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
.slickWindow::-webkit-scrollbar-thumb {
    background: #acacac;
    border: 0px none #ffffff;
    border-radius: 0;
}
.slickWindow::-webkit-scrollbar-thumb:hover {
    background: #000000;
}
.slickWindow::-webkit-scrollbar-thumb:active {
    background: #000000;
}
.slickWindow::-webkit-scrollbar-track {
    background: #f0f0f0;
    border: 0px none #ffffff;
    border-radius: 0;
}
.slickWindow::-webkit-scrollbar-track:hover {
    background: #f0f0f0;
}
.slickWindow::-webkit-scrollbar-track:active {
    background: #f0f0f0;
}
.slickWindow::-webkit-scrollbar-corner {
    background: transparent;
}

/* ========================
   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
*/

@media screen and (max-width: 480px) {
    /* Reduce the size of the main title */
    .slickModal .slickWindow .title {
    	font-size: 24px;
    }
    /* Let's center the close icon */
    .slickModal .close.icon {
    	right: 0;
    	left: 0;
    	margin: 0 auto;
    }
}
@media screen and (max-height: 480px) {
	/* Show the scrollbars so the user can scroll down the modal's content */
    .slickModal {
    	overflow: scroll;
    }
    /* Stick the overlay so it covers whole screen */
    .slickModal .overlay {
    	position: fixed;
    }
}