@keyframes passing-through {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    30%,70% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-40px)
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    30% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    10% {
        transform: scale(1.1)
    }

    20% {
        transform: scale(1)
    }
}

.dropzone,.dropzone * {
    box-sizing: border-box
}

.dropzone {
    min-height: 150px;
    border: 2px solid rgba(0,0,0,.3);
    background: #fff;
    padding: 20px 20px
}

.dropzone.dz-clickable {
    cursor: pointer
}

.dropzone.dz-clickable * {
    cursor: default
}

.dropzone.dz-clickable .dz-message,.dropzone.dz-clickable .dz-message * {
    cursor: pointer
}

.dropzone.dz-started .dz-message {
    display: none
}

.dropzone.dz-drag-hover {
    border-style: solid
}

.dropzone.dz-drag-hover .dz-message {
    opacity: .5
}

.dropzone .dz-message {
    text-align: center;
    margin: 2em 0
}

.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px
}

.dropzone .dz-preview:hover {
    z-index: 1000
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: linear-gradient(180deg,#eee,#ddd)
}

.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1
}

.dropzone .dz-preview.dz-image-preview {
    background: #fff
}

.dropzone .dz-preview.dz-image-preview .dz-details {
    transition: opacity .2s linear
}

.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1
}

.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0,0,0,.9);
    line-height: 150%
}

.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid hsla(0,0%,78%,.8);
    background-color: hsla(0,0%,100%,.8)
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent
}

.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span {
    background-color: hsla(0,0%,100%,.4);
    padding: 0 .4em;
    border-radius: 3px
}

.dropzone .dz-preview:hover .dz-image img {
    transform: scale(1.05);
    filter: blur(8px)
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10
}

.dropzone .dz-preview .dz-image img {
    display: block
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    animation: passing-through 3s cubic-bezier(.77,0,.175,1)
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    animation: slide-in 3s cubic-bezier(.77,0,.175,1)
}

.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px
}

.dropzone .dz-preview .dz-error-mark svg,.dropzone .dz-preview .dz-success-mark svg {
    display: block;
    width: 54px;
    height: 54px
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    transition: all .2s linear
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    transition: opacity .4s ease-in
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    animation: pulse 6s ease infinite
}

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: hsla(0,0%,100%,.9);
    -webkit-transform: scale(1);
    border-radius: 8px;
    overflow: hidden
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: linear-gradient(180deg,#666,#444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    transition: width .3s ease-in-out
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto
}

.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    transition: opacity .3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: linear-gradient(180deg,#be2626,#a92222);
    padding: .5em 1.2em;
    color: #fff
}

.dropzone .dz-preview .dz-error-message:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626
}

.vue-dropzone {
    border: 2px solid #e5e5e5;
    font-family: Arial,sans-serif;
    letter-spacing: .2px;
    color: #777;
    transition: .2s linear
}

.vue-dropzone:hover {
    background-color: #f6f6f6
}

.vue-dropzone>i {
    color: #ccc
}

.vue-dropzone>.dz-preview .dz-image {
    border-radius: 0;
    width: 100%;
    height: 100%
}

.vue-dropzone>.dz-preview .dz-image img:not([src]) {
    width: 200px;
    height: 200px
}

.vue-dropzone>.dz-preview .dz-image:hover img {
    transform: none;
    -webkit-filter: none
}

.vue-dropzone>.dz-preview .dz-details {
    bottom: 0;
    top: 0;
    color: #fff;
    background-color: rgba(33,150,243,.8);
    transition: opacity .2s linear;
    text-align: left
}

.vue-dropzone>.dz-preview .dz-details .dz-filename {
    overflow: hidden
}

.vue-dropzone>.dz-preview .dz-details .dz-filename span,.vue-dropzone>.dz-preview .dz-details .dz-size span {
    background-color: transparent
}

.vue-dropzone>.dz-preview .dz-details .dz-filename:not(:hover) span {
    border: none
}

.vue-dropzone>.dz-preview .dz-details .dz-filename:hover span {
    background-color: transparent;
    border: none
}

.vue-dropzone>.dz-preview .dz-progress .dz-upload {
    background: #ccc
}

.vue-dropzone>.dz-preview .dz-remove {
    position: absolute;
    z-index: 30;
    color: #fff;
    margin-left: 15px;
    padding: 10px;
    top: inherit;
    bottom: 15px;
    border: 2px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: 1.1px;
    opacity: 0
}

.vue-dropzone>.dz-preview:hover .dz-remove {
    opacity: 1
}

.vue-dropzone>.dz-preview .dz-error-mark,.vue-dropzone>.dz-preview .dz-success-mark {
    margin-left: auto;
    margin-top: auto;
    width: 100%;
    top: 35%;
    left: 0
}

.vue-dropzone>.dz-preview .dz-error-mark svg,.vue-dropzone>.dz-preview .dz-success-mark svg {
    margin-left: auto;
    margin-right: auto
}

.vue-dropzone>.dz-preview .dz-error-message {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    width: 100%;
    text-align: center
}

.vue-dropzone>.dz-preview .dz-error-message:after {
    display: none
}

.vdatetime-fade-enter-active,.vdatetime-fade-leave-active {
    transition: opacity .4s
}

.vdatetime-fade-enter,.vdatetime-fade-leave-to {
    opacity: 0
}

.vdatetime-overlay {
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    transition: opacity .5s
}

.m-vdatetime-tabs .vdatetime-popup__header {
    margin-bottom: 0;
    padding-bottom: 5px
}

.m-vdatetime-tabs .vdatetime-popup__header .vdatetime-popup__date,.m-vdatetime-tabs .vdatetime-popup__header .vdatetime-popup__year,.m-vdatetime-tabs .vdatetime-popup__header:after {
    display: none
}

.m-vdatetime-tabs .vdatetime-popup__title {
    margin-bottom: 0
}

.m-vdatetime-tabs .vdatetime-popup__body {
    min-height: 300px
}

.m-vdatetime-tabs .vdatetime-popup__tabs {
    display: flex;
    margin: 0 16px 22px;
    width: calc(100% - 32px);
    border-bottom: 1px solid rgba(138,150,163,.33)
}

.m-vdatetime-tabs .vdatetime-popup__tab {
    font-size: 15px;
    font-weight: 600;
    color: #8a96a3;
    position: relative;
    flex: 0 0 auto;
    cursor: pointer;
    padding: 20px 3px
}

.m-vdatetime-tabs .vdatetime-popup__tab:not(:first-child) {
    margin-left: 17px
}

.m-vdatetime-tabs .vdatetime-popup__tab:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    background-color: #27272b;
    width: 0;
    transition: width .3s
}

.m-mode-dark .m-vdatetime-tabs .vdatetime-popup__tab:after {
    background-color: #fefefe
}

.m-vdatetime-tabs .vdatetime-popup__tab.active {
    color: #27272b;
    font-weight: 600
}

.m-mode-dark .m-vdatetime-tabs .vdatetime-popup__tab.active {
    color: #fefefe
}

.m-vdatetime-tabs .vdatetime-popup__tab.active:after {
    width: 100%
}

.vdatetime-popup {
    z-index: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 340px;
    max-width: calc(100% - 30px);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.3);
    color: #444;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    line-height: 1.18;
    background: #fff;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

.vdatetime-popup,.vdatetime-popup * {
    box-sizing: border-box
}

.vdatetime-popup__header {
    padding: 18px 30px;
    background: #3f51b5;
    color: #fff;
    font-size: 32px
}

.vdatetime-popup__title {
    margin-bottom: 8px;
    font-size: 21px;
    font-weight: 300
}

.vdatetime-popup__year {
    font-weight: 300;
    font-size: 14px;
    opacity: .7;
    cursor: pointer;
    transition: opacity .3s
}

.vdatetime-popup__year:hover {
    opacity: 1
}

.vdatetime-popup__date {
    line-height: 1;
    cursor: pointer
}

.vdatetime-popup__actions {
    padding: 0 20px 10px 30px;
    text-align: right
}

.vdatetime-popup__actions__button {
    display: inline-block;
    border: none;
    padding: 10px 20px;
    background: transparent;
    font-size: 16px;
    color: #3f51b5;
    cursor: pointer;
    transition: color .3s
}

.vdatetime-popup__actions__button:hover {
    color: #444
}

.vdatetime-calendar__navigation--next:hover svg path,.vdatetime-calendar__navigation--previous:hover svg path {
    stroke: #888
}

.vdatetime-calendar__navigation,.vdatetime-calendar__navigation * {
    box-sizing: border-box
}

.vdatetime-calendar__navigation {
    position: relative;
    margin: 15px 0;
    padding: 0 30px;
    width: 100%
}

.vdatetime-calendar__navigation--next,.vdatetime-calendar__navigation--previous {
    position: absolute;
    top: 0;
    padding: 0 5px;
    width: 18px;
    cursor: pointer
}

.vdatetime-calendar__navigation--next svg,.vdatetime-calendar__navigation--previous svg {
    width: 8px;
    height: 13px
}

.vdatetime-calendar__navigation--next svg path,.vdatetime-calendar__navigation--previous svg path {
    transition: stroke .3s
}

.vdatetime-calendar__navigation--previous {
    left: 25px
}

.vdatetime-calendar__navigation--next {
    right: 25px;
    transform: scaleX(-1)
}

.vdatetime-calendar__current--month {
    text-align: center;
    text-transform: capitalize
}

.vdatetime-calendar__month {
    padding: 0 20px;
    transition: height .2s
}

.vdatetime-calendar__month__day,.vdatetime-calendar__month__weekday {
    display: inline-block;
    width: 14.28571%;
    line-height: 36px;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    cursor: pointer
}

.vdatetime-calendar__month__day>span,.vdatetime-calendar__month__weekday>span {
    display: block;
    width: 100%;
    position: relative;
    height: 0;
    padding: 0 0 100%;
    overflow: hidden
}

.vdatetime-calendar__month__day>span>span,.vdatetime-calendar__month__weekday>span>span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 0;
    border-radius: 50%;
    transition: background-color .3s,color .3s
}

.vdatetime-calendar__month__weekday {
    font-weight: 700
}

.vdatetime-calendar__month__day:hover>span>span {
    background: #eee
}

.vdatetime-calendar__month__day--selected:hover>span>span,.vdatetime-calendar__month__day--selected>span>span {
    color: #fff;
    background: #3f51b5
}

.vdatetime-calendar__month__day--disabled {
    opacity: .4;
    cursor: default
}

.vdatetime-calendar__month__day--disabled:hover>span>span {
    color: inherit;
    background: transparent
}

.vdatetime-time-picker__list::-webkit-scrollbar-thumb {
    background: #ccc
}

.vdatetime-time-picker__list::-webkit-scrollbar-track {
    background: #efefef
}

.vdatetime-time-picker,.vdatetime-time-picker * {
    box-sizing: border-box
}

.vdatetime-time-picker:after {
    content: "";
    display: table;
    clear: both
}

.vdatetime-time-picker__list {
    float: left;
    width: 50%;
    height: 305px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.vdatetime-time-picker__list::-webkit-scrollbar {
    width: 3px
}

.vdatetime-time-picker__with-suffix .vdatetime-time-picker__list {
    width: 33.3%
}

.vdatetime-time-picker__item {
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    transition: font-size .3s
}

.vdatetime-time-picker__item:hover {
    font-size: 32px
}

.vdatetime-time-picker__item--selected {
    color: #3f51b5;
    font-size: 32px
}

.vdatetime-time-picker__item--disabled {
    opacity: .4;
    cursor: default;
    font-size: 20px!important
}

.vdatetime-year-picker__list::-webkit-scrollbar-thumb {
    background: #ccc
}

.vdatetime-year-picker__list::-webkit-scrollbar-track {
    background: #efefef
}

.vdatetime-year-picker,.vdatetime-year-picker * {
    box-sizing: border-box
}

.vdatetime-year-picker:after {
    content: "";
    display: table;
    clear: both
}

.vdatetime-year-picker__list {
    float: left;
    width: 100%;
    height: 305px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.vdatetime-year-picker__list::-webkit-scrollbar {
    width: 3px
}

.vdatetime-year-picker__item {
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    transition: font-size .3s
}

.vdatetime-year-picker__item:hover {
    font-size: 32px
}

.vdatetime-year-picker__item--selected {
    color: #3f51b5;
    font-size: 32px
}

.vdatetime-year-picker__item--disabled {
    opacity: .4;
    cursor: default
}

.vdatetime-year-picker__item--disabled:hover {
    color: inherit;
    background: transparent
}

.vdatetime-month-picker__list::-webkit-scrollbar-thumb {
    background: #ccc
}

.vdatetime-month-picker__list::-webkit-scrollbar-track {
    background: #efefef
}

.vdatetime-month-picker,.vdatetime-month-picker * {
    box-sizing: border-box
}

.vdatetime-month-picker:after {
    content: "";
    display: table;
    clear: both
}

.vdatetime-month-picker__list {
    float: left;
    width: 100%;
    height: 305px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.vdatetime-month-picker__list::-webkit-scrollbar {
    width: 3px
}

.vdatetime-month-picker__item {
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    transition: font-size .3s
}

.vdatetime-month-picker__item:hover {
    font-size: 32px
}

.vdatetime-month-picker__item--selected {
    color: #3f51b5;
    font-size: 32px
}

.vdatetime-month-picker__item--disabled {
    opacity: .4;
    cursor: default
}

.vdatetime-month-picker__item--disabled:hover {
    color: inherit;
    background: transparent
}
