/*
Created on: 17 Sep, 2014, 4:29:37 PM
Author: senthil

Modification: 05 Apr, 2019
Author: Chrst
*/

.ti_tx, .mi_tx, .mer_tx {
  width: 100%;
  text-align: center;
  margin: 0 0;
}

.time, .mins, .meridian {
  display: inline-block;
  width: 40px;
  float: left;
  margin: 0 3px;
  font-size: 1.2em;
  color: #2d2e2e;
  font-family: arial;
  font-weight: 700;
}

.prev {
  cursor: pointer;
  padding: 10px 0 10px 0;
  width: 100%;
  border: 1px solid #ccc;
  margin: auto;
  border-radius: 5px 5px 0 0;
}

.next {
  cursor: pointer;
  padding: 10px 0 10px 0;
  width: 100%;
  border: 1px solid #ccc;
  margin: auto;
  border-radius: 0 0 5px 5px;
}

.prev:hover,
.next:hover {
  background-color: #ccc;
}

.next {
  background-position: 50% 150%;
}

.prev {
  background-position: 50% -50%;
}

.arrow_up {
  position: relative;
  height: 3px;
  width: 14px;
  margin: auto;
}
.arrow_up:before, .arrow_up:after {
  position: absolute;
  top: 0;
  content: "";
  height: 100%;
  width: 50%;
  background: #aaa;
}
.arrow_up:before {
  left: 0;
  transform: skew(0deg, -40deg);
}
.arrow_up:after {
  right: 0;
  transform: skew(0deg, 40deg);
}
.arrow_down {
  position: relative;
  height: 3px;
  width: 14px;
  margin: auto;
}
.arrow_down:before, .arrow_down:after {
  position: absolute;
  top: 0;
  content: "";
  height: 100%;
  width: 50%;
  background: #aaa;
}
.arrow_down:before {
  left: 0;
  transform: skew(0deg, 40deg);
}
.arrow_down:after {
  right: 0;
  transform: skew(0deg, -40deg);
}

.time_pick {
  width: 120px;
  position: relative;
  display: inline-block;
}

.timepicker_wrap {
  display: inline-flex;
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 0 rgba(50,50,50,0.35);
  background: #f6f6f6;
  float: left;
  z-index: 998;
}

.timepicker_wrap:after, .timepicker_wrap:before {
  bottom: 100%;
  left: 25px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.timepicker_wrap:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 7px;
  margin-left: -7px;
}
.timepicker_wrap:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #ccc;
  border-width: 9px;
  margin-left: -9px;
}


.arrow_top {
  display: none;
  position: absolute;
  top: -10px;
  left: 20px;
  background: url(../images/arrowup_16.png) no-repeat;
  width: 18px;
  height: 10px;
  z-index: 999;
}

input.timepicki-input {
  width: 100%;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  border-top: none;
  border-bottom: none;
  background: none repeat scroll 0 0 #FFFFFF;
  float: none;
  margin: 0;
  text-align: center;
}

a.reset_time {
  float: left;
  margin-top: 5px;
  color: #000;
}

