﻿@keyframes vdpSlideFromLeft
{
    0%
    {
        opacity: 0;
        transform: translate3d(-.5em,0,0);
    }
    to
    {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes vdpSlideFromRight
{
    0%
    {
        opacity: 0;
        transform: translate3d(.5em,0,0);
    }
    to
    {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes vdpToggleCalendar
{
    0%
    {
        opacity: 0;
        transform: scale(.5);
    }
    to
    {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes vdpFadeCalendar
{
    0%
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}
.vdp-toggle-calendar-enter-active.vdpPositionReady
{
    animation: vdpToggleCalendar .2s;
    transform-origin: top left;
}
.vdp-toggle-calendar-leave-active
{
    animation: vdpToggleCalendar .15s reverse;
}
.vdp-toggle-calendar-enter-active.vdpPositionFixed
{
    animation: vdpFadeCalendar .3s;
}
.vdp-toggle-calendar-leave-active.vdpPositionFixed
{
    animation: vdpFadeCalendar .3s reverse;
}
.vdpComponent
{
    color: #303030;
    display: inline-block;
    font-size: 10px;
    position: relative;
}
.vdpComponent.vdpWithInput>input
{
    padding-right: 30px;
}
.vdpClearInput
{
    bottom: 0;
    font-size: 1em;
    position: absolute;
    right: 0;
    top: 0;
    width: 3em;
}
.vdpClearInput:before
{
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 50%;
    box-sizing: border-box;
    color: #0000004d;
    content: "×";
    height: 1.4em;
    left: 50%;
    line-height: 1.1em;
    margin: -.7em 0 0 -.7em;
    position: absolute;
    top: 50%;
    width: 1.4em;
}
.vdpClearInput:hover:before
{
    box-shadow: 0 .2em .5em #00000026;
}
.vdpOuterWrap.vdpFloating
{
    padding: .5em 0;
    position: absolute;
    z-index: 220;
}
.vdpOuterWrap.vdpPositionFixed
{
    align-items: center;
    background-color: #0000004d;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 2em;
    position: fixed;
    right: 0;
    top: 0;
}
.vdpFloating .vdpInnerWrap
{
    max-width: 30em;
}
.vdpPositionFixed .vdpInnerWrap
{
    animation: vdpToggleCalendar .3s;
    border: 0;
    margin: 0 auto;
    max-width: 30em;
}
.vdpFloating.vdpPositionTop
{
    top: 100%;
}
.vdpFloating.vdpPositionBottom
{
    bottom: 100%;
}
.vdpFloating.vdpPositionLeft
{
    left: 0;
}
.vdpFloating.vdpPositionRight
{
    right: 0;
}
.vdpPositionTop.vdpPositionLeft
{
    transform-origin: top left;
}
.vdpPositionTop.vdpPositionRight
{
    transform-origin: top right;
}
.vdpPositionBottom.vdpPositionLeft
{
    transform-origin: bottom left;
}
.vdpPositionBottom.vdpPositionRight
{
    transform-origin: bottom right;
}
.vdpInnerWrap
{
    background: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .5em;
    box-shadow: 0 .2em 1.5em #0000000f;
    box-sizing: border-box;
    min-width: 28em;
    overflow: hidden;
    padding: 1em;
}
.vdpHeader
{
    background: #f5f5f5;
    margin: -1em -1em -2.5em;
    padding: 0 1em 2.5em;
    position: relative;
    text-align: center;
}
.vdpArrow, .vdpClearInput, .vdpPeriodControl>button
{
    background: none;
    border: 0;
    cursor: pointer;
    margin: 0;
    padding: 0;
}
.vdpArrow::-moz-focus-inner, .vdpClearInput::-moz-focus-inner, .vdpPeriodControl>button::-moz-focus-inner
{
    border: 0;
    padding: 0;
}
.vdpArrow
{
    bottom: 2.5em;
    font-size: 1em;
    overflow: hidden;
    position: absolute;
    text-align: left;
    text-indent: -999em;
    top: 0;
    width: 5em;
}
.vdpArrow:before
{
    border-radius: 100%;
    content: "";
    height: 2.2em;
    left: 50%;
    margin: -1.1em 0 0 -1.1em;
    position: absolute;
    top: 50%;
    transition: background-color .2s;
    width: 2.2em;
}
.vdpArrow:active, .vdpArrow:focus, .vdpArrow:hover
{
    outline: 0;
}
.vdpArrow:focus:before, .vdpArrow:hover:before
{
    background-color: #00000008;
}
.vdpArrow:active:before
{
    background-color: #00000012;
}
.vdpArrowNext:before
{
    margin-left: -1.4em;
}
.vdpArrow:after
{
    border: .5em solid transparent;
    content: "";
    height: 0;
    left: 50%;
    margin-top: -.5em;
    position: absolute;
    top: 50%;
    width: 0;
}
.vdpArrowNextDisable, .vdpArrowPrevDisable
{
    cursor: default!important;
}
.vdpArrowNextDisable:after
{
    background-color: unset!important;
    border-left-color: #cecece!important;
}
.vdpArrowPrevDisable:after
{
    border-right-color: #cecece!important;
}
.vdpArrowNextDisable:active:before, .vdpArrowNextDisable:focus:before, .vdpArrowNextDisable:hover:before, .vdpArrowPrevDisable:active:before, .vdpArrowPrevDisable:focus:before, .vdpArrowPrevDisable:hover:before
{
    background-color: unset;
}
.vdpArrowPrev
{
    left: -.3em;
}
.vdpArrowPrev:after
{
    border-right-color: #188bf6;
    margin-left: -.8em;
}
.vdpArrowNext
{
    right: -.6em;
}
.vdpArrowNext:after
{
    border-left-color: #188bf6;
    margin-left: -.5em;
}
.vdpPeriodControl
{
    display: inline-block;
    position: relative;
}
.vdpPeriodControl>button
{
    display: inline-block;
    font-size: 1.5em;
    padding: 1em .4em;
}
.vdpPeriodControl>select
{
    cursor: pointer;
    font-size: 1.6em;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.vdpTable
{
    position: relative;
    table-layout: fixed;
    width: 100%;
    z-index: 5;
}
.vdpNextDirection
{
    animation: vdpSlideFromRight .5s;
}
.vdpPrevDirection
{
    animation: vdpSlideFromLeft .5s;
}
.vdpCell, .vdpHeadCell
{
    box-sizing: border-box;
    text-align: center;
}
.vdpCell
{
    padding: .5em 0;
}
.vdpHeadCell
{
    padding: .3em .4em 1.8em;
}
.vdpHeadCellContent
{
    color: #848484;
    font-size: 1.3em;
    font-weight: 400;
}
.vdpCellContent
{
    border-radius: 100%;
    display: block;
    font-size: 1.4em;
    height: 1.857em;
    line-height: 1.857em;
    margin: 0 auto;
    text-align: center;
    transition: background .1s,color .1s;
    width: 1.857em;
}
.vdpPeriodControlDisable
{
    pointer-events: none;
}
.vdpPeriodControl>button, .vdpPeriodControlDisable
{
    cursor: default;
}
.vdpCell.outOfRange
{
    color: #c7c7c7;
}
.vdpCell.today
{
    color: #188bf6;
}
.vdpCell.selected .vdpCellContent
{
    background: #2e91fcb3;
    color: #fff;
}
@media(hover: hover)
{
    .vdpCell.selectable:hover .vdpCellContent
    {
        background: #2e91fcb3;
        color: #fff;
    }
}
.vdpCell.selectable
{
    cursor: pointer;
}
.vdpCell.selected
{
    border: none!important;
}
.vdpCell.disabled
{
    opacity: .5;
}
.vdpTimeControls
{
    background: #f5f5f5;
    margin: 1em -1em -1em;
    padding: 1.2em 2em;
    position: relative;
    text-align: center;
}
.vdpTimeUnit
{
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.vdpTimeUnit>input, .vdpTimeUnit>pre
{
    font-size: 1.7em;
    line-height: 1.3;
    padding: .1em;
    word-wrap: break-word;
    border: 0;
    border-bottom: 1px solid transparent;
    box-sizing: border-box;
    color: #000;
    margin: 0;
    resize: none;
    text-align: center;
    white-space: pre-wrap;
}
.vdpTimeUnit>pre
{
    font-family: inherit;
    visibility: hidden;
}
.vdpTimeUnit>input
{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border-radius: 0;
    height: 100%;
    left: 0;
    outline: none;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.vdpTimeUnit>input:focus, .vdpTimeUnit>input:hover
{
    border-bottom-color: #188bf6;
}
.vdpTimeUnit>input::-webkit-inner-spin-button, .vdpTimeUnit>input::-webkit-outer-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}
.vdpTimeCaption, .vdpTimeSeparator
{
    color: #848484;
    display: inline-block;
    font-size: 1.3em;
    vertical-align: middle;
}
.vdpTimeCaption
{
    margin-right: .5em;
}
.vdpCell .vdpCellContent
{
    border: 1px solid transparent;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    padding: 0 5px;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}
.vdpPeriodControl
{
    margin-right: 5px;
}