/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
    text-align: left;
    line-height: 1.5;
    color: #000000;
    position: absolute;
    z-index: 10000000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: -5px;
}

/**
 * The picker input element.
 */
.picker__input {
    cursor: default;
    max-width: unset !important;
}

/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
    transition-duration: .2s;
    outline: none !important;
}

.picker *:focus {
    outline: none;
}

/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder,
.picker__frame {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
    position: fixed;
    -webkit-backface-visibility: hidden;
}

/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
    position: absolute;
    margin: 0 auto;
    min-width: 256px;
    width: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    transition: all 0.15s ease-out;
}

@media (min-width: 500px) {
    .picker__frame {
        max-width: 80vw;
    }
}

@media (min-width: 500px) {
    .picker__frame {
        max-width: 65vw;
    }
}

@media (min-width: 800px) {
    .picker__frame {
        max-width: 45vw;
    }
}

@media (min-width: 992px) {
    .picker__frame {
        overflow: visible;
        top: 3px;
        bottom: -100%;
        max-height: 410px;
    }
}

@media (min-width: 1150px) {
    .picker__frame {
        max-width: 32vw;
    }
}

@media (min-height: 50em) {
    .picker__frame {
        overflow: visible;
        top: auto;
        bottom: -100%;
        max-height: 80%;
    }
}

@media (min-height: 40.125em) {
    .picker__frame {
        margin-bottom: 7.5%;
    }
}

/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
    display: table;
    width: 100%;
    height: 100%;
    margin-top: -16px;
}

@media (min-height: 50em) {
    .picker__wrap {
        display: block;
    }
}

.picker__frame {
    overflow: visible;
    top: 0;
}

/**
 * The box contains all the picker contents.
 */
.picker__box {
    background: #ffffff;
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;

}
@media (min-height: 50em) {
    .picker__box {
        display: block;
        font-size: 1.5em;
        border: 1px solid #777777;
        border-top-color: #898989;
        border-bottom-width: 0;
    }
}

@media (min-height: 40.125em) {
    .picker__box {
        border-bottom-width: 1px;
        border-radius: 5px;
    }
}

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    background: transparent;
    transition: background 0.15s ease-out;
    overflow-y: hidden;
    z-index: 2000000000;
    position: relative;
    min-width: 300px;
    min-height: 343px !important;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    margin-top: -1px;
    box-shadow: 0 10px 40px -10px #DDD;
}

.picker--opened .picker__frame {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.picker__box {
    border: 1px solid transparent;
}

.picker--opened .picker__frame {
    top: 0;
    bottom: 0;
}
