/* Copyright 2016 Pebble Design Pty Ltd. All Rights Reserved. */

.ui-datepicker {
    background: #fff;
    font: 300 16px/20px Roboto, arial;
    width: 500px!important;
    margin: 10px 0 0;
    padding: 5px 0;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    float: left;
    display: none;
    z-index: 999999999999999999999!important;
    overflow: hidden
}

.ui-datepicker-group {
    width: 230px;
    float: left;
    margin: 0 5px;
    border-radius: 0
}

.ui-datepicker-group .ui-datepicker-header {
    position: relative;
    background: #000000;
    width: 260px;
    margin: -5px 0 0 -5px;
    padding: 5px 0;
    color: #fff;
    font-weight: 300;
    text-transform: capitalize
}

.ui-datepicker-group-first .ui-datepicker-header {
    border-top-left-radius: 0
}

.ui-datepicker-group-last .ui-datepicker-header {
    border-top-right-radius: 0
}

.ui-datepicker .ui-datepicker-title {
    font-size: 16px;
    line-height: 25px;
    text-align: center
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month-year {
    width: 100%
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 49%
}

.ui-datepicker table {
    width: 100%;
    border-collapse: collapse;
    margin: 0
}

.ui-datepicker th {
    width: 25px;
    padding: 5px;
    font-weight: 500;
    color: #696969;
    text-transform: lowercase
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: 3px;
    text-align: right;
    text-decoration: none
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    background: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
    color: #696969;
    text-align: center
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    background: #000000;
    color: #fff
}

.ui-widget-header .ui-state-hover {
    opacity: .5;
    filter: Alpha(Opacity=50);
    cursor: pointer
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #fff;
    text-decoration: none
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #fff
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: .5;
    filter: Alpha(Opacity=50);
    cursor: default
}

.ui-icon {
    width: 30px;
    height: 30px;
    text-indent: -99999px;
    overflow: hidden;
    display: block
}

.ui-datepicker .ui-datepicker-prev .ui-icon {
    background: url(../images/datepicker-arrows.png) center left no-repeat
}

.ui-datepicker .ui-datepicker-next .ui-icon {
    background: url(../images/datepicker-arrows.png) center right no-repeat
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 7px;
    width: 30px;
    height: 30px
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background: none
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px
}

.ui-datepicker .ui-datepicker-next {
    right: 5px
}

@-webkit-keyframes push {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes push {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)

    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes wobble {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px)
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px)
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px)
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px)
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes wobble {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px)
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px)
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px)
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px)
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@media only screen and (max-width:700px) {
    
    .ui-datepicker {
        width: auto!important
    }
    .ui-datepicker-group {
        clear: both
    }

}









