/* HR Time Picker
Author :  Md Hidaytullah Rahmani
Located : https://github.com/hidaytrahman/hr-timePicker
*/

body {
    font-family: arial, sans serif;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}
.main-wrapper {
    max-width: 768px;
    margin: 0 auto;
}
.hr-time-picker {
    background: #e6e6e6;
    padding: 1% 1.4%;
    max-width: 230px;
    min-width: 230px;
}
.hr-time-picker .hr-timer {
    max-width: 103px;
    text-align: center;
    float: left;
    width: 101px;
    margin-right: 1%;
}
.picked-time-wrapper {
    margin: 5px 0;
}
.picked-time-wrapper .picked-time {
    padding: 9px;
    border: 1px solid #dedada;
    font-size: 18px;
    background: #FFEB3B;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    background: #fffffd url(../images/time-icon.png) no-repeat;
    background-size: 34px;
    background-position: 97%;
    cursor: pointer;
    outline: none;
}
.hr-time-picker .hr-timer .movable-area {
    height: 222px;
    overflow-y: hidden;
    position: relative;
    background: #fff;
}
.hr-time-picker .hr-timer.hours ul {
    position: absolute;
    width: 100%;
    top: 0;
}
.hr-time-picker .hr-timer.minutes {} .hr-time-picker .hr-timer .current-hour,
.hr-time-picker .hr-timer .current-minutes {
    background: #00BCD4;
    color: #fff;
    font-weight: bold;
}
.hr-time-picker .hr-timer.minutes li {
    padding: 6.4px 5px
}
.hr-time-picker .hr-timer.minutes ul {
    margin-top: 29px;
}
.hr-time-picker .hr-timer li {
    background: #ffffff;
    cursor: pointer;
    font-size: 20px;
    border-bottom: 1px solid #efeeee;
}
.hr-time-picker .hr-timer.hours li {
    padding: 7px 10px;
}
.hr-time-picker:after {
    content: "";
    display: table;
    clear: both
}
.pick-time-now {
    background: #f9f9f9;
    border: 1px solid #d0d0d0;
    padding: 10px;
    display: none;
}
.pick-time-now:after {
    content: "";
    display: table;
    clear: both;
}
.time-type {
    font-size: 22px;
    color: #797979;
    padding: 10px;
    display: block;
    text-align: center;
    margin: 4px 0;
    background: #e8e8e8;
}
.arrow-top,
.arrow-bottom {
    font-size: 21px;
    padding: 0px 6px;
    display: inline-block;
    color: #00BCD4;
    font-weight: bold;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 9;
    display: block;
}
.set-time-wrapper {
    clear: both;
    display: block;
    padding: 7px 0;
}
.set-time-wrapper a {
    font-size: 19px;
    text-transform: uppercase;
    text-decoration: none;
    background: #215e70;
    padding: 5px 10px;
    display: block;
    text-align: center;
    color: #fff;
}
.hr-disabled {
    color: #989c9c;
}