@charset "UTF-8";

#body-box {
	min-height: 800px;
}

#dateChosen {
	/*width: 200px;*/
    min-width: 200px;
    max-width: 350px;
    width: auto;
    color: #0b4b8f;
    height: 2.2em;
    border: none;
    border-bottom: 2px solid #0b4b8f;
    border-radius: 5px 0 0 0;
    box-shadow: 0 0 3px #ccc, 0 10px 15px #ebebeb inset;
    padding: 2px 5px;
    text-indent: 1px;
    font-size: 1.5em;
}

#dateChosen:invalid+span:after {
	content: '\2716';
	color: red;
	padding-left: 5px;
}

#dateChosen:valid+span:after {
	content: '\2714';
	color: green;
	padding-left: 5px;
}

table {
	max-width: 100%;
	/*overflow: hidden;*/
}

#content {
    width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 10px 0;
	min-height: 600px;
	display: none;
}

#errmsgs {
	padding: 5px 0 25px 0;
	color: red;
	/*font-size: 2em;*/
	font-size: 1.5em;
	font-style: italic;
	text-align: center;
}

.btn-ospo {
	display: inline-block;
	border: 1px #1d5898 solid; /*old color = rgb(16, 16, 173) */
	margin: 0 5px;
    line-height: 1em;
    font-size: 1em;
    padding: 10px;
    color: rgb(255, 255, 255);
    background-color: #1d5898;  /*old color = #0b4b8f */
    border-radius: 5px;
	cursor: pointer;
	/*-webkit-transform: translateY(5px);
	transform: translateY(5px);*/
}

.btn-ospo:active {
	transform: translateY(2px);
}
        
button:hover {
	opacity: .9;
}
        
.traverse-days {
	display: inline-block;
}
        
.tophdr {
	margin-top: 0;
	padding: 10px 0 0 0;
	text-align: center;
}
		
h2.banner {
	margin-top: 0;
	text-align: center;
}
		
.date-select {
	width: 100%;
	margin: 10px auto;
	text-align: center;
	margin-bottom: 0;
}
		
.date-select label {
	font-size: 1.5em;
	padding-right: 5px;
	position: relative;
	top: 3px;
}
		
		
.loading {
	margin: 5px auto;	
	width: 100px;
	height: 100px;
	border: 15px solid #f3f3f3;
	border-radius: 50%;
	border-top: 15px solid #0b4b8f;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	
}
		
@-webkit-keyframes spin {
	0% { 
		transform: rotate(0deg); 
	}
	100% { 
		transform: rotate(360deg); 
	}	
}
		
@keyframes spin {
	0% { 
		transform: rotate(0deg); 
	}
	100% { 
		transform: rotate(360deg); 
	}	
}
		

.pullup {
	position: relative;
	-webkit-animation: pullup 1s;
	animation: pullup 1s;
	
}

@-webkit-keyframes pullup {
	0% { 
		bottom: -100px;
		opacity: 0;
	}
	100% { 
		bottom: 0px;
		opacity: 1; 
	}	
}
		
@keyframes pullup {
	0% { 
		bottom: -100px;
		opacity: 0;
	}
	100% { 
		bottom: 0px;
		opacity: 1; 
	}	
}


input[type="radio"] ~ label {
	box-sizing: border-box;
	display: inline-block;
	/*padding: 10px 5px;*/
	cursor: pointer;
	opacity: 0.5;
}

input[type="radio"] {
	/*opacity: 0.7;*/
	/*width: 0;*/
	/*height: 0;*/
}

input[type="radio"]:checked + label {
	opacity: 1;
	/*border: 1px solid blue;*/
}

#product-selected {
	-webkit-animation: fade 2s;
	animation: fade 2s;
}

.fade-effect {
	-webkit-animation: fade 2s;
	animation: fade 2s;
}
	
@-webkit-keyframes fade {
	from { opacity: 0; }
	to { opacity: 1; };
}
	
@keyframes fade {
	from { opacity: 0; }
	to { opacity: 1; };
}

.sarProduct-select {
	font-size: 1em;
	padding: 10px 0;
	font-style: italic;
}
		
		
		
