.datetime_display{
    text-align: center;
    border-collapse: collapse;
    width: auto;
    display: inline-block;
    border-radius: 3px;
	width:100%;
	border: 1px solid gray;
}
.datetime_display table{
	width:100%;
}

.datetime_display .is_year{
	width: 33px;
    box-sizing: border-box;
}
.datetime_display .is_month, .datetime_display .is_day, .datetime_display .is_hours, .datetime_display .is_minutes, .datetime_display .is_seconds, .datetime_display .is_ampm{
	width: 21px;
    box-sizing: border-box;
}
.datetime_display input{
	border: none;
	outline: none;
	text-align:center;
	line-height: 35px;
}
.datetime_display td{
	padding-left:0px !important;
	padding-right:0px !important;
	padding:0px !important;
	display: inline-block;
	font-size: 20px;
}

.datetime_display .picker_tbl td{
	display: table-cell;
}
.datetime_display .pdatetime_sep{
}
.datetime_display .pdatetime_sep2{
	display: inline-block;
	margin-top:-3px;
}
.datetime_display .is_ampm{
	border: 1px dashed gray;
    cursor: pointer;
    background: white;
    padding: 2px;
    width: 28px;
	outline:none;
	border-radius:20px;
}
.datetime_display .is_ampm:focus{
	border: 1px dotted black;
}
.datetime_display .is_ampm::-moz-focus-inner{
	border:none;
}
.datetime_display .picker_btn{
	background: url(images/datetime.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 27px;
    width: 27px;
    display: table-cell;
    border-left: 0px solid darkgrey;
	background-color:white;
}
.datetime_display:not(.show_time) .picker_btn{
	background:url(images/date.png);
	background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.datetime_display:not(.show_date) .picker_btn{
	background:url(images/time.png);
	background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.datetime_display:not(.disabled) .picker_btn:hover{
	cursor:pointer;
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
.datetime_display ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	font-size:20px;
}
.datetime_display ::-moz-placeholder { /* Firefox 19+ */
	font-size:20px;
	line-height:18px;
}
.datetime_display :-ms-input-placeholder { /* IE 10+ */
	font-size:20px;
}
.datetime_display :-moz-placeholder { /* Firefox 18- */
	font-size:20px;
}
.datetime_display .picker.open{
	display: block !important;
}
.datetime_display .picker {
    display: none !important;
    background: white;
    position: absolute;
    z-index: 100;
    color: #EEE;
    min-height: 112px;
	border: 1px solid black;
    border-left: 10px solid #237bff;
}
.datetime_display .picker.date{
	width: 187px;
}
.datetime_display .picker.time{
	width: 88px;
}
.datetime_display .picker.date.time{
	width: 420px;
}
.datetime_display .picker_tbl {
	width:100%;
	border-collapse: collapse;
	border-top: 1px solid gray;
}
.datetime_display .picker_tbl th, .datetime_display .picker_tbl td{
	text-align:center;
	padding-left:0px !important;
	padding-right:0px !important;
}
.datetime_display .picker_date {
	width:300px;
	height:250px;
}
.datetime_display .picker_time {
	width:60px;
	background:white;
	height:120px;
	overflow:hidden;
}
.datetime_display .picker .picker_time_list{
	margin:0;
	padding:0;
	text-align:center;
    overflow-y: scroll;
    width: 100px;
    height: 100%;
}
.datetime_display .picker .picker_time_list li{
	list-style-type: none;
    cursor: pointer;
    margin: 2px;
    border: 1px dotted black;
    padding: 3px;
    box-sizing: border-box;
    font-size: 20px;
}
.datetime_display .picker .picker_time_list li:hover{
	border: 1px solid black;
}
.datetime_display .picker .picker_time_list li.selected{
	border: 1px solid #93cdff;
	background: #93cdff;
}
.datetime_display .picker .previous{
	float:left;
	cursor:pointer;
}
.datetime_display .picker .next{
	float:right;
	cursor:pointer;
}
.decade_selected, .year_selected, .month_selected{
    display: inline-block;
	cursor:pointer;
}

.hidden{
	display:none;
}

.datetime_display td.selectable{
	border:1px dotted gray;
	cursor:pointer;
}
.datetime_display td.selectable:hover{
	border:1px solid gray;
}
.datetime_display td.selectable.selected{
	background-color:#93cdff;
	border:none;
}
.datetime_display .day_selection td{
	width:14.2%;
	font-size: 20px;
	padding:3px !important;
}
.datetime_display .month_selection td, .datetime_display .year_selection td{
	font-size: 20px;
	padding:3px !important;
}
.datetime_display .day_selection .prevmonth, .datetime_display .day_selection .nextmonth{
	background: #c1c1c1;
    color: white;
}
.datetime_display .previous{
	background: url(images/previous.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 18px;
    width: 18px;
	cursor:pointer;
}
.datetime_display .next{
	background: url(images/next.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 18px;
    width: 18px;
	cursor:pointer;
}

.datetime_display {
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
	position: relative;
}

.datetime_display .day_selection thead td {
    border-bottom: 2px solid #237bff;
}
.datetime_display .day_selection thead td.disabled_day {
    border-bottom: 2px solid red;
}

.datetime_display_container{
	width:100%;
}

.datetime_display > table tr td:first-child{
	width:100%;
}
.datetime_display > table tr td:nth-child(2){
	width:30px;
}

.datetime_display .picker_header{
	font-size:20px;
}