/*!
* Full Weather Page V2
* history.css file
* edit below as your needs if you are familiar with css!
*/

/*history form outer*/
.wea-history-form{
	position:relative;
	font-size:1em;
	text-align:left;
	padding:15px;
}

/*history form title*/
.wea-history-form h4{
	font-size:1.5em;
	font-weight:400;
	padding:0;
	margin:0 0 10px 0;
}

/*months chart*/
#historyallmonths{
	float:left;
	width:50%;
}

/*history form fields*/
.history-form{
	float:right;
	width:45%;
	font-size:1.1em;
	text-align:left;
}

/*history form fields title*/
.history-form h5{
	font-size:1.2em;
	font-weight:400;
	padding:0;
	margin:0 0 5px 0;
}


/* history form fields */
.history-form input, .history-form select{
	width:90%;
	line-height:2em;
	font-size:0.9em;
	border:1px solid #aaa;
	padding:5px 15px;
}

.history-form-right{
	width:25%;
	display:inline-block;
	padding:5px;
}

.history-block{
	position:relative;
	text-align:left;
	margin:10px 0 10px 0;
	padding:0 0 10px 0;
	font-weight:1em;
	border-bottom: 1px dotted #666;
}

.history-block:last-child{
	margin:10px 0 0 0;
	padding:0;
	border-bottom: 0;
}

.history-block h6{
	margin:0 0 3px 0;
	padding:0;
	font-size:1em;
	font-weight:700;
}

.history-block p{
	margin:0 0 3px 0;
	padding:0;
	font-size:0.9em;
	font-weight:400;
}

.history-block .submitDiv{
	width:25%;
	text-align:left;
	display:inline-block;
}

.history-block .submitDiv input{
	font-size:1em;
	font-weight:700;
	cursor:pointer;
}

div.ui-datepicker{
	font-size:0.9em;
}

.ui-datepicker-year{
	display:none;
}

#weadatepickerfrom{
	width:60%;
	position:relative;
	padding-left:30px;
	cursor:pointer;
	background-image:url('../img/calendar-clean.png');
	background-repeat:no-repeat;	
	background-position:3px 3px;
}

#weadatepickerto{
	width:60%;
	position:relative;	
	padding-left:30px;	
	cursor:pointer;	
	background-image:url('../img/calendar-clean.png');
	background-repeat:no-repeat;
	background-position:3px 3px;
}

#weadatepicker{
	width:70%;
	position:relative;	
	padding-left:30px;
	cursor:pointer;	
	background-image:url('../img/calendar-clean.png');
	background-repeat:no-repeat;
	background-position:3px 3px;
}
.history-date-block{
	margin:0 15px 0 0;
}

/* history form modal window */
.history-modal-box {
  display: none;
  position: fixed;
  z-index: 1000;
  width: 80%;
  height:80%;
  top:10%;
  left:10%;
  background: white;
  border-bottom: 1px solid #aaa;
  border-radius: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Roboto",Arial,Verdana;
  font-size:14px;
  padding:15px;
}
.history-modal-box .history-area, .history-months-area{
	max-height:100%;
}
.history-modal-box .history-js-modal-close{
	position:absolute;
	right:10px;
	top:10px;
	color:#cc0000;
	padding-left: 6px;
	padding-right: 6px;	
	border:1px solid #cc0000;
	border-radius:100%;
	font-size:2em;
	text-decoration:none;
	line-height:1;
}
.history-modal-overlay {
  opacity: 0;
  filter: alpha(opacity=0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) !important;
}



/*RESPONSIVE STYLE*/
@media only screen and (max-width: 800px) {

	/*months chart*/
	#historyallmonths{
		float:none;
		width:100%;
	}

	/*history form fields*/
	.history-form{
		float:none;
		width:100%;
		margin:15px 0 0 0;
	}

}

@media only screen and (max-width: 600px) {
	.history-form input, .history-form select{
		width:100%;
	}
	.history-form-right{
		width:45%;
		display:inline-block;
		padding:5px;
	}

	.history-block .submitDiv{
		width:100%;
		text-align:center;
		display:block;
		margin:5px auto;
		position:relative;
	}

	.history-block .submitDiv input{
		display:inline-block;
		width:auto;
	}	
	
	.history-date-block{
		width:100%;
		text-align:center;
	}
	
	#weadatepicker{
		width:50%;
	}
}