/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 *
 * Time-stamp:   "2018-01-18 22:52:07 by cbn"
 *
 * CBN Added "goto-today" button and +7 and +14
 *
 */

.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;  */
}

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

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

.pika-single {
    *zoom: 1; 
}

.pika-single:before, .pika-single:after {
    content: " ";
    display: table; 
}

.pika-single:after {
    clear: both; 
}

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

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

.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0; 
}

.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;
    background-color: #fff; 
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    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; 
}

.pika-prev:hover, .pika-next:hover {
    background-size: 75% 75%;
    background-position: center center;
    box-shadow: none;
    opacity: 1;
}

.pika-prev:hover {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
}

.pika-next:hover {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");    
}

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

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

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

.pika-select {
    display: inline-block;
    width: 35px;
    margin: 0 5px;
    color: #333 !important;
    padding: 0 0 0 9px;
}

.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: #9b9b98;
    font-size: 12px;
    line-height: 25px;
    /* font-weight: bold; */
    text-align: center; 
}

.pika-table abbr {
    border-bottom: none;
    cursor: help; 
}

.pika-button {
    border-radius: 0;		/* CBN */
    cursor: pointer;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f4f3f1;
    text-shadow: none;
}

.is-today .pika-button {
    color: #4990c4;
    font-weight: bold; 
}

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

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

.pika-button:hover, .pika-goto-today:hover, .pika-goto-today-7:hover, .pika-goto-today-14:hover, .pika-select:hover {
    color: #fff !important;
    background: #00d78c  !important; /* CBN changed from #ff8000 */
    box-shadow: none !important;
    border-radius: 3px !important; 
}

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

.pika-goto-today, .pika-goto-today-7, .pika-goto-today-14, .pika-goback-today-7, .pika-goback-today-14 {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0px solid gray;
    margin-top: 2px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 4px 8px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    background: #f4f3f1;
    margin-top: 10px;
}

/* added for time - https://github.com/owenmead/Pikaday/blob/master/css/pikaday.css */

.pika-time-container {
    clear: both;
    padding: 1px 0 5px;
}

.pika-time {
    margin: 7px auto 7px;
}

.pika-time td {
    text-align: center;
}

.pika-time select {
    cursor: pointer;
}

.pika-time .pika-time-label {
    font-weight: bold;
    font-size: 11px;
    color: red;
    padding-right: 0.33em;
}
