.item1 { grid-area: heading; }
.item2 { grid-area: posters; }
.item3 { grid-area: info; }

@-ms-viewport{
  width: device-width;
}
@media (max-width: 240px) {
   /* really tiny screens */
}

@media (min-width: 241px) and (max-width: 319px) {
table {
	max-width: 339px;
	text-align: center;
	margin: auto;
}
table.movie {
	border-spacing: 4;
	background-color: white;
}
img.kids_banner {
	border-radius: 6px;
	width: 90%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
div.container {
	height: 177px;
	width: 120px;
	position: relative;
	margin: auto;
}
.poster {
	display: inline-block;
	border: 1px solid black;
	height: 177px;
	width: 120px;
}
div.marquee {
    	border-radius: 6px;
	border: 2px solid red;
	width: 90%;
	max-width: 300px;
	margin: auto;
	padding: 10px;
	background-color: white;
	text-align: center;
}
.marquee {
	font-size: 2vw;
	font-weight: bold;
	color: black;
}

.marquee_heading {
	font-size: 20px;
	font-weight: bold;
	color: red;
}

.marquee_title {
	font-size: 18px;
	font-weight: bold;
	font-style: italic;
	color: black;
}
.display_date {
	font-size: 24px;
	font-weight: bold;
	color: green;
}


}

@media (min-width: 320px) and (max-width: 649px) {
   /* Basically up to, but not including an iPad */

.grid-container {
	width: 95%;
	display: grid;
    	border-radius: 6px;
	border: 2px solid blue;
  	grid-template-columns: 100%;
  	grid-template-rows: auto;
	grid-template-areas:
		'heading'
		'posters'
		'info';
	grid-gap: 5px;
	background-color: white;
	padding: 2px;
	margin: auto;
	margin-top: 5px;
}
.item1 {
	background-color: white;
	width: 100%;
	margin: auto;
	text-align: center;

}
.item2 {
	text-align: center;

}
div.info {
	border: 1px solid black;
	background-color: white;
	padding: 5px;

}
.item3 {

}
table {
	max-width: 649px;
	text-align: center;
	margin: auto;
}
table.movie {
	width: 98%;
	border-collapse: collapse;
	background-color: white;
	border: 3px solid blue;
}
img.kids_banner {
	border-radius: 6px;
	width: 323px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.poster {
	border: 1px solid black;
	height: 185px;
	width: 125px;
	z-index: 0;
	margin: 10px 5px;
}
div.marquee {
    	border-radius: 6px;
	border: 4px solid red;
	width: 85%;
	margin: auto;
	padding: 5px;
	background-color: white;
	text-align: center;
}
.marquee {
	font-size: 4vw;
	font-weight: bold;
	color: black;
}
.marquee_heading {
	font-size: 20px;
	font-weight: bold;
	color: red;
}
.marquee_title {
	font-size: 18px;
	font-weight: bold;
	font-style: italic;
	color: black;
}
.display_date {
	font-size: 24px;
	font-weight: bold;
	color: green;
}
img.social {
	height: 30px;
	width: auto;
	padding: 2px 6px;
	border: 0px;
}
}

/* END SMART PHONE */

@media (min-width: 650px) {
.grid-container {
	width: 95%;
	max-width: 768px
	display: grid;
    	border-radius: 6px;
	border: 2px solid blue;
  	grid-template-columns: 100%;
  	grid-template-rows: auto;
	grid-template-areas:
		'heading'
		'<br />s'
		'info';
	grid-gap: 5px;
	background-color: white;
	padding: 2px;
	margin: auto;
	margin-top: 5px;
}
.item1 {
	background-color: white;
	width: 100%;
	margin: auto;
	text-align: center;

}
.item2 {
	text-align: center;

}
.item3 {

}
div.info {
	border: 1px solid black;
	background-color: white;
	padding: 5px;

}
table {
	max-width: 768px;
	text-align: center;
}
table.movie {
	border-collapse: collapse;
	width: 100%;
	max-width: 768px;
	background-color: white;
	margin: auto;
	border: 3px solid blue;
}
img.kids_banner {
	border-radius: 6px;
	width: 323px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.poster {
	display: inline-block;
	border: 1px solid black;
	height: 334px;
	width: 225px;
	margin: 10px 20px;
}
div.marquee {
    	border-radius: 6px;
	border: 4px solid red;
	width: 600px;
	margin: auto;
	padding: 10px;
	background-color: white;
	margin: auto;
	text-align: center;
}
.marquee {
	font-size: 16px;
	font-weight: bold;
	color: black;
}
.marquee_heading {
	font-size: 24px;
	font-weight: bold;
	color: red;
}
.marquee_title {
	font-size: 24px;
	font-weight: bold;
	font-style: italic;
	color: black;
}
.display_date {
	font-size: 24px;
	font-weight: bold;
	color: green;
}
img.social {
	height: 40px;
	width: auto;
	padding: 2px 10px;
	border: 0px;
}

}
/* END LARGE SCREEN */

table.special {
	-moz-border-radius: 6px 6px 6px 6px;
    	-webkit-border-radius: 6px 6px 6px 6px;
    	border-radius: 6px 6px 6px 6px;
	border-width: 4px 4px 4px 4px;
	border-style: solid solid solid solid;
	border-color: red red red red;
	padding: 3px;
	background-color: white;
	margin-left: auto;
	margin-right: auto;
}

td.privacy {
	line-height: 100%;
}

td.marquee {
	padding: 20px;
}

.dates {
	font-size: 22px;
	font-weight: bold;
	color: #33FF33;
}

.nopasses {
	font-size: 16pt;
	font-weight: bold;
	color: red;
}

.gates {
	font-size: 16px;
	font-weight: bold;
	color: black;
}

.exit {
	font-size: 16px;
	font-weight: bold;
	color: black;
}

.time {
	font-size: 1em;
	font-weight: bold;
	color: black;
}

.end_time {
	font-size: 14px;
	font-weight: bold;
	color: black;
}



.sound {
	font-size: 22px;
	font-weight: bold;
	color: black;
	background-color: yellow;
}
table.times {
	border-collapse: collapse;
	border: 2px solid red;
}

td.times {
	background-color: white;
	border: 1px solid white;
	padding: 0px;
}

.title {
	font-size: 16px;
	font-weight: bold;
	color: red;
  font-size: 1.5em;
}

img.spacer {
	border: 1px solid white;
}

a {
	border: 0px;
	text-decoration: none;
}

a.trailer {
	border: 0px;
	font-size: 16px;
	font-weight: bold;
	color: red;
	text-decoration: none;
}
a.future {
	font-size: 14px;
	font-weight: bold;
	color: red;
	text-decoration: none;
}

.closed_header {
	font-size: 24px;
	font-weight: bold;
	color: red;
}

.closed_text {
	font-size: 18px;
	font-weight: bold;
	color: blue;
}

a.toc_links {
	font-size: 20px;
	font-weight: bold;
	color: white;
	text-decoration: none;
	text-shadow: 0.5px 0.5px red;
}

table.main {
	border-collapse:collapse;
	background-color: white;
	padding: 0px;
	border:2px solid yellow;
	width: 95%;
	max-width: 650px;
	margin: 0 auto;
}
td.movie_info {
	text-align: left;
	padding: 5px;
	border: 2px solid black;
	background-color: white;
}
td.date_set {
	border: 2px solid blue;
}

.heading {
	font-size: 18px;
	font-weight: bold;
	color: red;
}

.prices {
	font-size: 16px;
	font-weight: bold;
	color: black;
}

.notes {
	font-size: 12px;
	font-weight: bold;
	color: red;
}


.passes {
	font-size: 14px;
	font-weight: bold;
	color: black;
}

.gift {
	font-size: 14px;
	font-weight: bold;
	color: black;
}

li.rules {
	font-size: 12px;
	font-weight: normal;
	color: black;
}



.text9 {
	font-size: 9px;
	color: black;
}


.text10 {
	font-size: 10px;
	color: black;
}

.text12 {
	font-size: 12px;
	color: black;
}

.text14 {
	font-size: 14px;
	color: black;
}

.text16 {
	font-size: 16px;
	color: black;
}

.question {
	font-size: 12px;
	color: black;
	font-weight: bold;
}

.answer {
	font-size: 12px;
	color: black;
}

.special_text {
	font-size: 16px;
	font-weight: bold;
	color: red;
}

.rating {
	font-size: 14px;
	color: black;
	line-height: 14px;
}

.cast {
	font-size: 12px;
	color: black;
}

.description {
	font-size: 12px;
	color: black;
}

.menu_icon {
			display: block;
			text-align: right;
			font-size: 24px;
			color: #fff;
			text-decoration: none;
}


input[type=email]
{
    width: 150px;
}

input[type=number]
{
    width: 60px;
}

input[type=text]
{
    width: 125px;
}

input[type=text], input[type=email], input[type=number]
{
    background-color: #cee1fb;
    border:solid 1px #800000;
    color: #000000;
    height: 20px;
    padding-left:10px;
    box-shadow: 2px 2px 0 #828181 inset;
}

input[type=button], input[type=text], input[type=email], input[type=number]
{
    border: 0;
    border-radius:5px;
}

.comments {
    -webkit-box-shadow: inset 2px 2px 2px 0px #828181;
    -moz-box-shadow: inset 2px 2px 2px 0px #828181;
    box-shadow: inset 2px 2px 2px 0px #828181;
    background-color: #cee1fb;
    height: 60px;
    margin: 10px;
    overflow: auto;
    padding: 7px 10px;
    width: 250px;
    font-size: 10px;
    border: 1px solid #aaa;
}

.special_text {
	font-size: 22px;
	color: red;
}

.special_heading {
	font-size: 20px;
	font-weight: bold;
	color: #336633;
	text-shadow: 1px 1px #808080;
	letter-spacing: 1px;

}
.foodPermit {
	width: 80%;
	font-size: 12pt;
	font-color: red;
	font-weight: bold;
	background-color: yellow;
	border: 1px solid red;
}
hr {
	border: 5px solid red;
	border-radius 5px;
	width: 80%;
}
