.passholder_search {
	margin-bottom: 40px;
width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
	background: url(pass_tracker_img.png) no-repeat;
	-webkit-background-size: 360px auto;
            background-size: 360px auto;
}
.passholder_search .pt_header {
	margin-left: 100px;
    padding-top: 80px;
    font-size: 38px;
    color: #59c4e0;
    text-transform: uppercase;
	height: 160px;
    box-sizing: border-box;
	visibility:hidden;
}
.passholder_search .pt_intro {
	font-size: 20px;
    line-height: 1.3;
}
.passholder_search .button {
    background-color: #59c4e0;
    margin-top: 10px;
}
.passholder_search .pt_pass_id {
	width: 100%;
	margin-bottom: 6px;
}
.passholder_search .passholder_results {
	display: block;
	box-sizing: border-box;
	border-top: solid 2px black;
	height: 300px;
	overflow:hidden;
	position: relative;
    padding: 10px 0;
	
-webkit-transition: all .25s ease-out;  
        transition: all .25s ease-out;
}
.passholder_search .passholder_results.hide {
	display: block;
	padding: 0;
	border-top: none;
	
-webkit-transition: all .25s ease-out;  
        transition: all .25s ease-out;
}
.passholder_search .passholder_details h2 {
	font-size: 20px;
    line-height: 1.3;
	font-weight: 400;
}
.passholder_search .passholder_details .skier_days {
	font-size: 250%;
	color: #59c4e0;
	font-weight: 700;
}
.passholder_search .passholder_results.loading {
	height: 200px;
}
.passholder_search .passholder_results.hide {
	height: 0 !important;
}
.passholder_search .custom_message {
    padding: 15px 20px;
	background-color: #59c4e0;
	font-weight: 400;
}
.passholder_search .passholder_results > p {
	margin-top: 20px;
}
.passholder_search .custom_message p {
	color: white;
	font-size: 24px;
	font-size: 28px;
    margin-bottom: 0;
}
.passholder_search .gen_message {
	margin-top: 20px;
}
.passholder_search .gen_message p {
	font-size: 20px;
    line-height: 1.3;
}



.spinner {
	display: none;
}
.loading .spinner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  margin: -20px;
  top: 50%;
  left: 50%;
}
.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #999;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
	-webkit-transform: scale(0.0);
	transform: scale(0.0);
  } 50% { 
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
  }
}

