@charset "UTF-8";

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

.pika-single {
	z-index: 9999;
	display: block;
	position: relative;
	margin-left: -20px
	color: #333;
	background: #fff;
	border: 1px solid #ccc;
	border-bottom-color: #bbb;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-border-radius: 6px 6px 6px 6px;
	-moz-border-radius: 6px 6px 6px 6px;
	border-radius: 6px 6px 6px 6px;
	box-shadow: 10px 10px 5px rgba(0,0,0,0.5) !important;
	border: 3px solid #ffffff !important;
	background: #868789;
}

/*
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.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: 240px;
    margin: 8px;
	-webkit-border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	background: #ffffff;
}

.pika-title {
    position: relative;
    text-align: center;
    background: #868789;
    padding: 0px 0px 4px 0px

}
/* 
.pika-title * {
	color: white !important;
	font-size: 20px !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.4) !important;
	font-family: 'Carter One' !important;
	font-style: normal !important;
	font-weight: 400 !important;
}
 */

.pika-label {
    display: inline-block;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    line-height: 21px;
	background: #868789;
	user-select: none;
	color: white !important;
	font-size: 18px !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.4) !important;
/* 
	font-family: 'Carter One' !important;
 */
	font-style: normal !important;
	font-weight: bold !important;

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

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0px 2px 5px 2px;
    width: 40px;
    height: 40px;
    /* 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 calc(50% - 3px);
    background-repeat: no-repeat;
    background-size: 75% 75%;
    touch-action: manipulation; /* Prevent delay */
/* 
    opacity: .5;
 */
}

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

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('/CoastalGraphics/images/CalendarArrowLeft.svg');
	background-repeat: no-repeat;
}
.pika-prev:hover,
.is-rtl .pika-next:hover {
    float: left;
    background-image: url('/CoastalGraphics/images/CalendarArrowLeftHover.svg');
	background-repeat: no-repeat;
}


.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('/CoastalGraphics/images/CalendarArrowRight.svg');
}
.pika-next:hover,
.is-rtl .pika-prev:hover {
    float: right;
    background-image: url('/CoastalGraphics/images/CalendarArrowRightHover.svg');
}

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

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

.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: #999;
    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: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
    height: initial;
    text-align: center !important;
    border: 2px solid white !important;
}

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

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

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

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.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 {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #000000;
    box-shadow: none;
    border-radius: 3px;
}

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


.pika-select {
  display: none !important;
}

.pika-clear-button {
    background: #000000;
    color: white;
    border: 2px solid white;
    margin: 0px 0px 5px 5px; 
	-webkit-border-radius: 6px 6px 6px 6px;
	-moz-border-radius: 6px 6px 6px 6px;
	border-radius: 6px 6px 6px 6px;
	width: 60px;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	line-height: 1.1;
	font-size: 16px;
/* 
	font-family: 'Carter One' !important;
 */
	font-style: normal !important;
	font-weight: 400 !important;
	-webkit-tap-highlight-color: transparent;
  	touch-action: manipulation;
}
.pika-clear-button:hover {
    background: #e9ad0c;
}
