*{
  margin: 0;
  padding: 0;
}

body{
  background-color: #FFFFFF;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 15px;
  line-height: 23px;
}


img{
  border: 0;
  max-width: 100%;
}

a{
  text-decoration: none;
  color: #0072BC;
  cursor: pointer;
}
a:focus{
  outline: none;
}

h2{
  font-weight: 300;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 15px;
}
h3{
  font-weight: 300;
  font-size: 20px;
  line-height: 20px;
  margin-top: 50px;
  margin-bottom: 10px;
  background-color: #f1f1f1;
  padding: 10px 5px;
}
p{
  margin-bottom: 15px;
}

ul, ol{
  margin: 0 0 15px 30px;
}


#container{
  width: 95%;
  max-width: 948px;
  margin: 0 auto;
  padding: 15px 2%;
  box-shadow: 0 0 10px #666666;
}

#header{
  margin-bottom: 15px;
}

#header .logo{
  height: 80px; 
}

.show{
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 15px;
  box-shadow: 0 0 10px #666666;
}
.show img{
  border-radius: 10px;
  display: block;
}
.show.bordered{
  border:1px solid #CCCCCC;
  margin-bottom: 35px;
  overflow: hidden;
}

.performance{
  display: block;
  border: 1px solid #CCCCCC;
  color: #333333;
  padding: 15px;
  border-radius: 5px;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 15px;
  transition: .6s background-color;
}
.performance .venue{
  display: block;
  font-size: 16px;
  line-height: 16px;
  padding-top: 10px;
}
.performance .pricerange{
  display: block;
  font-size: 16px;
  line-height: 16px;
  padding-top: 10px;
}

.performance .booknow{
  display: block;
  opacity:0;
  transition: .3s opacity;
  float: right;
  background-color: red;
  color: #FFFFFF;
  border-radius: 3px;
  padding: 5px 20px;
  font-weight: 300;
  font-size: 25px;
  line-height: 30px;
  text-transform: uppercase;
}

.performance .soldout{
  display: block;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  margin-top: 5px;
  border-radius: 5px;
  padding: 5px;
}

.performance:hover{
  background-color:#f1f1f1;
  transition: .3s background-color;
}
.performance:hover .booknow{
  opacity: 1;
  transition: .3s opacity;
}
.performance.full{
  cursor: auto;
  opacity: .5;
}
.performance.full:hover .booknow{
  opacity: 0;
}

.input{
  border: 1px solid #CCCCCC;
  padding: 5px 3px;
  width: 90%;
  box-sizing:border-box;
}
.textarea{
  border: 1px solid #CCCCCC;
  padding: 5px 3px;
  width: 90%;
  height: 150px;
  box-sizing:border-box;
}
.select{
  border: 1px solid #CCCCCC;
  padding: 5px 3px;
  width:90%;
  box-sizing:border-box;
}


.clear{ clear:both; }

.cart td{
  padding: 5px 20px 5px 5px;
}
.cart td.heading{
  background-color: #333333;
  color: #FFFFFF;
}
.cart td.lightheading{
  font-weight: 700;
}

.submit{
  border: none;
  background-color: #333333;
  color: #FFFFFF;
  font-weight: 300;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 10px;
  cursor:pointer;
}

#header form{
  float: right;
}
#header .input{
  width: 80px;
}
#header .submit{
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #666666;
}


.error{
  color:red;
  border:1px solid red;
  padding: 10px;
  margin: 20px 0;
  text-align:center;
}