        date-input-polyfill {
            width: auto;
            min-width: 260px;
            height: auto;
            background-color: #fff;
            -webkit-box-shadow: 0px 0px 5px 2px rgba(128, 128, 128, .81);
            -moz-box-shadow: 0px 0px 5px 2px rgba(128, 128, 128, .81);
            box-shadow: 0px 0px 5px 2px rgba(128, 128, 128, .81);
            position: absolute;
            font-family: Arial;
            font-size: 16px;
            color: #000
        }

        date-input-polyfill .date-sel   ect-header {
            position: relative;
            width: 100%;
            height: 40px;
            background-color: #fff;
            text-align: center;
            line-height: 40px
        }

        date-input-polyfill .date-select-header .date-header-button {
            padding: 5px 25px 5px 5px;
            border: solid 1px #a8a3a3;
            background-color: #fff;
            min-width: 150px;
            width: auto;
            max-width: 180px;
            height: 28px;
            border-radius: 5px;
            cursor: pointer;
            position: relative;
            line-height: 15px;
            font-size: 13px
        }

        date-input-polyfill .date-select-header .date-header-button-active:after {
            content: "<";
            display: inline-block;
            position: absolute;
            right: 10px;
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -o-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            transform: rotate(90deg);
            font-size: 18px;
            top: 6px
        }

        date-input-polyfill .date-select-header .date-header-button-inactive:after {
            content: "<";
            display: inline-block;
            position: absolute;
            right: 10px;
            -webkit-transform: rotate(-90deg);
            -moz-transform: rotate(-90deg);
            -o-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
            font-size: 18px;
            top: 6px
        }

        date-input-polyfill .day-matrix-wrapper {
            position: relative;
            background-color: #fff;
            width: 100%;
            height: auto;
            padding: 0 10px 10px 10px;
            box-sizing: border-box
        }

        date-input-polyfill .day-matrix-wrapper table {
            width: 100%;
            text-align: center;
            font-size: 18px;
            padding: 0;
            line-height: 24px;
            border-collapse: separate
        }

        date-input-polyfill .day-matrix-wrapper table thead {
            color: #b4b4b4;
            pointer-events: none
        }

        date-input-polyfill .day-matrix-wrapper table thead th {
            border: none;
            padding: 0;
            text-align: center;
            font-size: 18px
        }

        date-input-polyfill .day-matrix-wrapper table tbody td {
            border: solid 1px #fff;
            padding: 0;
            text-align: center;
            font-size: 18px;
            width: 30px
        }

        date-input-polyfill .day-matrix-wrapper table tbody td.current-day {
            border: solid 1px #cce5f3;
            background-color: #cce5f3
        }

        date-input-polyfill .day-matrix-wrapper table tbody td.current-day.disabled {
            border: solid 1px #fff
        }

        date-input-polyfill .day-matrix-wrapper table tbody td[data-selected] {
            font-weight: bold;
            border: solid 1px #a2d8f6;
            background-color: #a2d8f6
        }

        date-input-polyfill .day-matrix-wrapper table tbody td[data-selected]:hover {
            border: solid 1px #a2d8f6;
            background-color: #a2d8f6
        }

        date-input-polyfill .day-matrix-wrapper table tbody td.prev-month,
        date-input-polyfill .day-matrix-wrapper table tbody td.next-month {
            color: #d3d3d3
        }

        date-input-polyfill .day-matrix-wrapper table tbody td.prev-month:hover,
        date-input-polyfill .day-matrix-wrapper table tbody td.next-month:hover {
            color: #fff
        }

        date-input-polyfill .day-matrix-wrapper table tbody td.disabled {
            background-color: gray;
            color: #d3d3d3
        }

        date-input-polyfill .day-matrix-wrapper table tbody td.disabled:hover {
            background-color: gray;
            border: solid 1px #fff;
            color: #d3d3d3
        }

        date-input-polyfill .day-matrix-wrapper table tbody td:hover {
            cursor: pointer;
            background-color: #d3d3d3;
            border: solid 1px #d3d3d3
        }

        date-input-polyfill .date-select-dropdown {
            position: absolute;
            width: 100%;
            height: auto;
            top: 40px;
            background-color: #fff;
            display: none
        }

        date-input-polyfill .date-select-dropdown .select-container {
            position: relative;
            float: left;
            width: 100%;
            height: auto;
            padding: 5px 60px 5px 60px
        }

        date-input-polyfill .date-select-dropdown .select-container .up,
        date-input-polyfill .date-select-dropdown .select-container .down {
            width: 100%;
            height: 25px;
            text-align: center;
            background-color: transparent;
            cursor: pointer;
            line-height: 22px;
            float: left;
            border: none;
            outline: none;
            color: #7d7d7d;
            position: relative
        }

        date-input-polyfill .date-select-dropdown .select-container .up:after {
            content: "<";
            position: absolute;
            top: 0;
            left: 19px;
            font-size: 20px;
            display: inline-block;
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -o-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            transform: rotate(90deg)
        }

        date-input-polyfill .date-select-dropdown .select-container .down:after {
            content: "<";
            position: absolute;
            top: 0;
            left: unset;
            right: 19px;
            font-size: 20px;
            display: inline-block;
            -webkit-transform: rotate(-90deg);
            -moz-transform: rotate(-90deg);
            -o-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
            transform: rotate(-90deg)
        }

        date-input-polyfill .date-select-dropdown .select-container .select-wrapper {
            float: left;
            width: 50px;
            height: 175px;
            position: relative;
            margin: 10px
        }

        date-input-polyfill .date-select-dropdown .select-container .select-wrapper .option-wrapper {
            float: left;
            width: 100%;
            height: auto
        }

        date-input-polyfill .date-select-dropdown .select-container .select-wrapper .option-wrapper .option {
            height: 25px;
            border-radius: 5px;
            text-align: center;
            float: left;
            width: 100%;
            line-height: 25px
        }

        date-input-polyfill .date-select-dropdown .select-container .select-wrapper .option-wrapper .option-2 {
            background-color: #d3d3d3
        }

        date-input-polyfill[data-open=false] {
            visibility: hidden;
            z-index: -100 !important;
            top: 0
        }

        date-input-polyfill[data-open=true] {
            visibility: visible
        }
