/* 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 {
    position: relative !important;
}
.hr-time-picker .hr-timer {
    position: relative !important;
    width: 50%;
    text-align: center;
    float: left;
}
.picked-time-wrapper {
    position: relative;
}


.picked-time-wrapper .picked-time .selectedFrom, .picked-time-wrapper .picked-time .selectedTo  {
      border: 1px solid #a7a7a7;
}

.picked-time-wrapper .picked-time {
    width: 100%;
    padding: 1px;
    font-size: 18px;
    cursor: pointer;
    outline: none;
    text-align: center;
}

.picked-time {
    position: relative;
}

.hr-time-picker .hr-timer .movable-area {
    overflow-y: hidden;
    background: #fff;
}
.hr-time-picker .hr-timer.hours ul {
}
.hr-time-picker .hr-timer.minutes {
    float: right;
}

.hr-time-picker .hr-timer .current-hour,
.hr-time-picker .hr-timer .current-minutes {
    background: #0275d8;
    color: #fff;
    font-weight: bold;

}

.hr-time-picker .hr-timer li {
    background: #ffffff;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid #efeeee;
}
.hr-time-picker .hr-timer.hours li {

}
.hr-time-picker .picked-time-wrapper .picked-time:after {
    content: "\f0dd";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    position: absolute;
    right: 13px;
    top: 8px;
    color:#a7a7a7;
}
.pick-time-now {
    background: #f9f9f9;
    border: 1px solid #d0d0d0;
    width: calc(100% - 24px);
    /* left: 2px; */
    /* top: -2px; */
    border-bottom-left-radius: 0.25em;
    border-bottom-right-radius: 0.25em;
    display: none;
    position: absolute;
    z-index: 99;
}
.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;
    display: block;
    text-align: center;
    color: #fff;
}
.disabled {
  pointer-events: none;
  opacity: 0.5;
  background: #CCC;
}

.timeInput {
  display:none;
}


@media (max-width: 768px)
 {
   .pick-time-now {
       width: auto;
       z-index: 99;
   }
   .hr-time-picker .hr-timer {
      width: 40px;
    }
}
