@charset "UTF-8";

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

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    border-top: none;
}

/*
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: fixed;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 174px;
}

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

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

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

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url( '../../img/arrows/left.svg' );
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url( '../../img/arrows/right.svg' );
    *right: 0;
}

.pika-prev:hover,
.pika-next:hover {
    background-color: transparent !important;
}

.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: 25px;
    padding: 0;
}

.pika-table th {
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    outline: none;
    border: 0;
    margin: 0;
    height: 24px;
    width: 24px;
    text-align: center;
    background-color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10.5pt;
}

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

.is-today .pika-button {
    font-family: 'Josefin Sans', sans-serif !important;
    background-color: #e7e7e7;
}

.is-selected .pika-button {
    color: #000;
    font-weight: bold;
    background-color: #fff;
}

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

.pika-button:hover {
    background-color: #e7e7e7;
}
