@charset "UTF-8";

/*!
 * Pikaday
 * Copyright 漏 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
   /* border: 1px solid #ccc;*/
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;}
.pika-single:after { clear: both ;}
.pika-single { *zoom: 1 ;}

.pika-single.is-hidden {
    display: none;}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);}

.pika-lendar {
    float: left;
    width: 294px;
    height:208px;
    background: #5c5c5c;}

.pika-title {
    position: relative;
    text-align: center;
    background: #707070
;}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: #fff;}
.pika-title select {
     color: #fff;
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .8;
    *position: absolute;
    *top: 0;}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url(../images/date_l.png);
    *left: 0;}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url(../images/date_r.png);}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;}

.pika-select {
    display: inline-block;
    *display: inline;}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;}

.pika-table th {
    color: #fff;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #c5cccc;
    font-size: 12px;
    line-height: 15px;
    background: none;}

.pika-week {
    font-size: 11px;
    color: #999;}

.is-today .pika-button {
    color: #fff;
    font-weight: bold;
    background: #96100d
;}

.is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #ff8000;
    /*box-shadow: inset 0 1px 3px #178fe5;*/
    border-radius: 3px;}

.is-active .pika-button {
    color: #fff;
    font-weight: bold;
    background: #ffba05;
    /*box-shadow: inset 0 1px 3px #178fe5;*/
    border-radius: 3px;}

.is-inrange .pika-button {
    background: #D5E9F7;}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;}

.is-disabled .pika-button,
.is-outside-current-month .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;}

.pika-button:hover {
    color: #5c5c5c;
    background: #ffd564;
    box-shadow: none;
    border-radius: 3px;}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;}

