/* date picker */
.cal-input { visibility:hidden; position:absolute; left:0; top:0 }
.date-picker { display:inline-block; vertical-align:top; margin-left:5px }
.date-div { position:relative; display: inline-block; }

/* calendar icon */
@font-face { 
        font-family: 'GlyphIcons';
        font-style: normal;
        font-weight: normal;
        font-display: swap;
        src:    local('glyphicons'),
                local('GlyphIcons'),
                url('/info/webfonts/glyphicons.woff?42417090') format('woff'), 
                url('/info/webfonts/glyphicons.ttf?42417090') format('truetype'),
                url('/info/webfonts/glyphicons.eot?42417090#iefix') format('embedded-opentype'),
                url('/info/webfonts/glyphicons.svg?42417090#glyphicons') format('svg');
}

[class^="gicon-"]:before, [class*=" gicon-"]:before { font-family:"GlyphIcons"; font-style:normal; font-weight:normal; font-variant:normal; display:inline-block; width:1em; line-height:1em; text-align:center; text-decoration:none; text-transform:none; speak:none }

.gicon-calendar:before { content: '\e803'; cursor:pointer; }

/* calendar */
#calroot { width:252px; padding:2px; border:solid 1px #CCC; background:#FFF; font-family:helvetica, arial; font-size:12px; border-radius:3px; z-index:10000; box-shadow:0 0 10px rgba(0,0,0,0.3) }
#calhead { padding:0 1px; height:24px }
#caltitle { float:left; width:180px; margin:0 1px; color:#444; text-align:center; font-size:13px; font-weight:bold; line-height:24px }
#calnext, #calprev { float:left; width:34px; height:24px; border-radius:3px; cursor:pointer; position:relative }
#calnext { float:right }
#calnext:after, #calprev:after { content:""; width:0; height:0; position:absolute; left:14px; top:6px } 
#calnext:after { border-top:solid 6px transparent; border-bottom:solid 6px transparent; border-left:solid 6px #999 }
#calprev:after { border-top:solid 6px transparent; border-bottom:solid 6px transparent; border-right:solid 6px #999  }
#calprev.caldisabled, #calnext.caldisabled { visibility:hidden }
#caldays { height:24px }
#caldays span { display:block; float:left; width:36px; line-height:24px; text-align:center }
.calweek { height:24px; padding:1px 0 }
.calweek a { display:block; float:left; margin-left:2px; width:34px; height:24px; line-height:24px; text-decoration:none; text-align:center; color:#FFF; background:#7F7F7F; border-radius:3px } 
.calweek a:first-child { margin-left:1px }
.calweek a:hover, 
.calweek a.calfocus { color:#fff; background:#000 }
.calweek a.caldisabled { background:#efefef; color:#ccc; cursor:default }
#calcurrent { background:#444 }
/* offmonth day */
.calweek a.caloff { color:#ccc }
.calweek a.caloff:hover { background-color:rgb(245, 245, 250) }