/*! 
 * PikadayResponsive 
 * A responsive datepicker built on top of Pikaday. It shows the native datepicker on mobile devices and a nice JS-picker on desktop. 
 * 
 * @author: Francesco Novy 
 * @licence: MIT <http://www.opensource.org/licenses/mit-license.php> 
 * @link https://github.com/mydea/PikadayResponsive 
 * @copyright: (c) 2016 
 * @version: 0.6.7 
 */ 

@charset "UTF-8";

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


body  .pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: black;
    background: #fff;
    border: 1px solid  rgb(154,154,154);
    border-bottom-color:  rgb(154,154,154);
    font-family:'Urbano', Arial, Helvetica, sans-serif;
    margin-top: -1px;
}

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

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

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

body  .pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

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

body  .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: normal;
    background-color: #fff;
}
body  .pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

body  .pika-prev,
body  .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: .5;
    *position: absolute;
    *top: 0;
}

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

body  .pika-prev,
body  .is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

body  .pika-next,
body  .is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

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

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

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

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

body  .pika-table th {
    color: black;
    font-weight: 300;
    font-size: 12px;
    line-height: 25px;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
}

body  .pika-table th abbr {
	text-decoration: none;
}

body  .pika-button {
    cursor: pointer;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: black;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: rgb(245, 245, 245);
}

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

body  .is-today .pika-button {
    color: black;
    font-weight: bold;
}

body  .is-selected .pika-button {
    color: white;
    font-weight: bold;
    background: rgb(164,170,0);
    -webkit-box-shadow: inset 0 1px 3px rgb(154,154,154);
            box-shadow: inset 0 1px 3px rgb(154,154,154);
    -webkit-border-radius: 0;
            border-radius: 0;
}

body  .is-inrange .pika-button {
    background: rgb(164,170,0);
}

body  .is-startrange .pika-button {
    color: rgb(164,170,0);
    background: rgb(164,170,0);
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-border-radius: 0;
            border-radius: 0;
}

body  .is-endrange .pika-button {
    color: #fff;
    background: rgb(164,170,0);
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-border-radius: 0;
            border-radius: 0;
}

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

body  .pika-button:hover {
    color: white;
    background: rgb(164,170,0);
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-border-radius: 0;
            border-radius: 0;
}

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


/*! 
 * PikadayResponsive 
 * A responsive datepicker built on top of Pikaday. It shows the native datepicker on mobile devices and a nice JS-picker on desktop. 
 * 
 * @author: Francesco Novy 
 * @licence: MIT <http://www.opensource.org/licenses/mit-license.php> 
 * @link https://github.com/mydea/PikadayResponsive 
 * @copyright: (c) 2016 
 * @version: 0.6.7 
 */ 


body  .pikaday__container {
  display: inline-block;
  position: relative;
}

/* Height and width has to be equal! */
body  .pikaday__display, .pikaday__invisible {
  width: 100%;
}

body  .pikaday__display--native {
  pointer-events: none;
  cursor: pointer;
}

body  .pikaday__display.is-invalid {
  background: rgba(255, 0, 0, 0.05);
}

body  .pikaday__invisible {
  opacity: 0;
  color: transparent;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

