
.datepicker--cells {
    display: flex;
    flex-wrap: wrap;
}
.datepicker--cell {
    align-items: center;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 32px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.datepicker--cell.-focus- {
    background: #f0f0f0 none repeat scroll 0 0;
}
.datepicker--cell.-current- {
    color: #4eb5e6;
}
.datepicker--cell.-current-.-focus- {
    color: #4a4a4a;
}
.datepicker--cell.-current-.-in-range- {
    color: #4eb5e6;
}
.datepicker--cell.-in-range- {
    background: rgba(92, 196, 239, 0.1) none repeat scroll 0 0;
    border-radius: 0;
    color: #4a4a4a;
}
.datepicker--cell.-in-range-.-focus- {
    background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell.-disabled- {
    color: #aeaeae;
    cursor: default;
}
.datepicker--cell.-disabled-.-focus- {
    color: #aeaeae;
}
.datepicker--cell.-disabled-.-in-range- {
    color: #a1a1a1;
}
.datepicker--cell.-disabled-.-current-.-focus- {
    color: #aeaeae;
}
.datepicker--cell.-range-from- {
    background-color: rgba(92, 196, 239, 0.1);
    border: 1px solid rgba(92, 196, 239, 0.5);
    border-radius: 4px 0 0 4px;
}
.datepicker--cell.-range-to- {
    background-color: rgba(92, 196, 239, 0.1);
    border: 1px solid rgba(92, 196, 239, 0.5);
    border-radius: 0 4px 4px 0;
}
.datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- {
    background: #5cc4ef none repeat scroll 0 0;
    color: #fff;
}
.datepicker--cell.-range-from-.-range-to- {
    border-radius: 4px;
}
.datepicker--cell.-selected- {
    border: medium none;
}
.datepicker--cell.-selected-.-focus- {
    background: #45bced none repeat scroll 0 0;
}
.datepicker--cell:empty {
    cursor: default;
}
.datepicker--days-names {
    display: flex;
    flex-wrap: wrap;
    margin: 8px 0 3px;
}
.datepicker--day-name {
    align-items: center;
    color: #ff9a19;
    display: flex;
    flex: 1 1 0;
    font-size: 0.8em;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
}
.-only-timepicker- .datepicker--content, .datepicker--body, .datepicker-inline .datepicker--pointer {
    display: none;
}
.datepicker--cell-day {
    width: 14.2857%;
}
.datepicker--cells-months {
    height: 170px;
}
.datepicker--cell-month {
    height: 25%;
    width: 33.33%;
}
.datepicker--cells-years, .datepicker--years {
    height: 170px;
}
.datepicker--cell-year {
    height: 33.33%;
    width: 25%;
}
.datepickers-container {
    left: 0;
    position: absolute;
    top: 0;
}
@media print {
.datepickers-container {
    display: none;
}
}
.datepicker {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: content-box;
    color: #4a4a4a;
    font-family: Tahoma,sans-serif;
    font-size: 14px;
    left: -100000px;
    opacity: 0;
    position: absolute;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, left 0s ease 0.3s, -webkit-transform 0.3s ease 0s;
    width: 250px;
    z-index: 100;
}
.datepicker.-from-top- {
    transform: translateY(-8px);
}
.datepicker.-from-right- {
    transform: translateX(8px);
}
.datepicker.-from-bottom- {
    transform: translateY(8px);
}
.datepicker.-from-left- {
    transform: translateX(-8px);
}
.datepicker.active {
    opacity: 1;
    transform: translate(0px);
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, left 0s ease 0s, -webkit-transform 0.3s ease 0s;
}
.datepicker-inline .datepicker {
    border-color: #d7d7d7;
    box-shadow: none;
    left: auto;
    opacity: 1;
    position: static;
    right: auto;
    transform: none;
}
.datepicker--content {
    box-sizing: content-box;
    padding: 4px;
}
.datepicker--pointer {
    background: #fff none repeat scroll 0 0;
    border-right: 1px solid #dbdbdb;
    border-top: 1px solid #dbdbdb;
    height: 10px;
    position: absolute;
    width: 10px;
    z-index: -1;
}
.datepicker--nav-action:hover, .datepicker--nav-title:hover {
    background: #f0f0f0 none repeat scroll 0 0;
}
.-top-center- .datepicker--pointer, .-top-left- .datepicker--pointer, .-top-right- .datepicker--pointer {
    top: calc(100% - 4px);
    transform: rotate(135deg);
}
.-right-bottom- .datepicker--pointer, .-right-center- .datepicker--pointer, .-right-top- .datepicker--pointer {
    right: calc(100% - 4px);
    transform: rotate(225deg);
}
.-bottom-center- .datepicker--pointer, .-bottom-left- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
    bottom: calc(100% - 4px);
    transform: rotate(315deg);
}
.-left-bottom- .datepicker--pointer, .-left-center- .datepicker--pointer, .-left-top- .datepicker--pointer {
    left: calc(100% - 4px);
    transform: rotate(45deg);
}
.-bottom-left- .datepicker--pointer, .-top-left- .datepicker--pointer {
    left: 10px;
}
.-bottom-right- .datepicker--pointer, .-top-right- .datepicker--pointer {
    right: 10px;
}
.-bottom-center- .datepicker--pointer, .-top-center- .datepicker--pointer {
    left: calc(50% - 10px / 2);
}
.-left-top- .datepicker--pointer, .-right-top- .datepicker--pointer {
    top: 10px;
}
.-left-bottom- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
    bottom: 10px;
}
.-left-center- .datepicker--pointer, .-right-center- .datepicker--pointer {
    top: calc(50% - 10px / 2);
}
.datepicker--body.active {
    display: block;
}
.datepicker--nav {
    border-bottom: 1px solid #efefef;
    display: flex;
    justify-content: space-between;
    min-height: 32px;
    padding: 4px;
}
.-only-timepicker- .datepicker--nav {
    display: none;
}
.datepicker--nav-action, .datepicker--nav-title {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.datepicker--nav-action {
    -moz-user-select: none;
    border-radius: 4px;
    width: 32px;
}
.datepicker--nav-action.-disabled- {
    visibility: hidden;
}
.datepicker--nav-action svg {
    height: 32px;
    width: 32px;
}
.datepicker--nav-action path {
    fill: none;
    stroke: #9c9c9c;
    stroke-width: 2px;
}
.datepicker--nav-title {
    border-radius: 4px;
    padding: 0 8px;
}
.datepicker--buttons, .datepicker--time {
    border-top: 1px solid #efefef;
    padding: 4px;
}
.datepicker--nav-title i {
    color: #9c9c9c;
    font-style: normal;
    margin-left: 5px;
}
.datepicker--nav-title.-disabled- {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    cursor: default;
}
.datepicker--buttons {
    display: flex;
}
.datepicker--button {
    align-items: center;
    border-radius: 4px;
    color: #4eb5e6;
    cursor: pointer;
    display: inline-flex;
    flex: 1 1 0;
    height: 32px;
    justify-content: center;
}
.datepicker--button:hover {
    background: #f0f0f0 none repeat scroll 0 0;
    color: #4a4a4a;
}
.datepicker--time {
    align-items: center;
    display: flex;
    position: relative;
}
.datepicker--time.-am-pm- .datepicker--time-sliders {
    flex: 0 1 138px;
    max-width: 138px;
}
.-only-timepicker- .datepicker--time {
    border-top: medium none;
}
.datepicker--time-sliders {
    flex: 0 1 153px;
    margin-right: 10px;
    max-width: 153px;
}
.datepicker--time-label {
    display: none;
    font-size: 12px;
}
.datepicker--time-current {
    align-items: center;
    display: flex;
    flex: 1 1 0;
    font-size: 14px;
    margin: 0 0 0 10px;
    text-align: center;
}
.datepicker--time-current-colon {
    line-height: 1;
    margin: 0 2px 3px;
}
.datepicker--time-current-hours, .datepicker--time-current-minutes {
    font-family: "Century Gothic",CenturyGothic,AppleGothic,sans-serif;
    font-size: 19px;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.datepicker--time-current-hours::after, .datepicker--time-current-minutes::after {
    background: #f0f0f0 none repeat scroll 0 0;
    border-radius: 4px;
    bottom: -2px;
    content: "";
    left: -2px;
    opacity: 0;
    position: absolute;
    right: -2px;
    top: -3px;
    z-index: -1;
}
.datepicker--time-current-hours.-focus-::after, .datepicker--time-current-minutes.-focus-::after {
    opacity: 1;
}
.datepicker--time-current-ampm {
    align-self: flex-end;
    color: #9c9c9c;
    font-size: 11px;
    margin-bottom: 1px;
    margin-left: 6px;
    text-transform: uppercase;
}
.datepicker--time-row {
    align-items: center;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #dedede, #dedede) no-repeat scroll left 50% / 100% 1px;
    display: flex;
    font-size: 11px;
    height: 17px;
}
.datepicker--time-row:first-child {
    margin-bottom: 4px;
}
.datepicker--time-row input[type="range"] {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    cursor: pointer;
    flex: 1 1 0;
    height: 100%;
    margin: 0;
    padding: 0;
}
.datepicker--time-row input[type="range"]:hover::-moz-range-thumb {
    border-color: #b8b8b8;
}
.datepicker--time-row input[type="range"]:focus {
    outline: 0 none;
}
.datepicker--time-row input[type="range"]:focus::-moz-range-thumb {
    background: #5cc4ef none repeat scroll 0 0;
    border-color: #5cc4ef;
}
.datepicker--time-row input[type="range"]::-moz-range-thumb {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #dedede;
    border-radius: 3px;
    box-sizing: border-box;
    cursor: pointer;
    height: 12px;
    transition: background 0.2s ease 0s;
    width: 12px;
}
.datepicker--time-row input[type="range"]::-moz-range-track {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    color: transparent;
    cursor: pointer;
    height: 1px;
}
.datepicker--time-row span {
    padding: 0 12px;
}
.datepicker--time-icon {
    border: 1px solid;
    border-radius: 50%;
    color: #9c9c9c;
    font-size: 16px;
    height: 1em;
    margin: 0 5px -1px 0;
    position: relative;
    width: 1em;
}
.datepicker--time-icon::after, .datepicker--time-icon::before {
    background: currentcolor none repeat scroll 0 0;
    content: "";
    position: absolute;
}
.datepicker--time-icon::after {
    height: 0.4em;
    left: calc(50% - 1px);
    top: calc(50% + 1px);
    transform: translateY(-100%);
    width: 1px;
}
.datepicker--time-icon::before {
    height: 1px;
    left: calc(50% - 1px);
    top: calc(50% + 1px);
    width: 0.4em;
}
.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
    color: #dedede;
}
.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
    color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
    background: #a2ddf6 none repeat scroll 0 0;
    color: #fff;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
    background: #8ad5f4 none repeat scroll 0 0;
}
.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, 0.1);
    color: #ccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
}