
.timerangepicker-container {
  display: flex;
  position: absolute;
  right: 0;
  background-color: #fff;
  width: 340px;
  z-index: 9;
}
  .timerangepicker-label {
    display: block;
    line-height: 2em;
    background-color: #c8c8c880;
    padding-left: 1em;
    border-bottom: 1px solid #502314;
    margin-bottom: 0.75em;
  }
  
  .timerangepicker-from,
  .timerangepicker-to {
    border: 1px solid #502314;
    padding-bottom: 0.75em;
  }
  .timerangepicker-from {
    border-right: none;
  }
  .timerangepicker-display {
    box-sizing: border-box;
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #502314;
    text-align: center;
    position: relative;
    margin: 10px 10px;
    line-height: 10px;
}
  .timerangepicker-display .increment,
  .timerangepicker-display .decrement {
    cursor: pointer;
    position: absolute;
    font-size: 1.5em;
    width: 1.5em;
    text-align: center;
    left: 0;
  }
  
  .timerangepicker-display .increment {
    margin-top: -0.25em;
    top: -1em;
    position: relative;
  }
  
  .timerangepicker-display .decrement {
      margin-bottom: -0.25em;
      bottom: -1em;
      position: relative;
}

.timerangepicker-display .increment.angle-up {
  width: 10px;
  height: 10px;
  border-left: 1px solid #502314;
  border-top: 1px solid #502314;
  transform: rotate(45deg);
  display: block;
  margin: 0 auto;
  position: relative;
  top: -12px;
}
.timerangepicker-display .decrement.angle-down{
    width: 10px;
    height: 10px;
    border-left: 1px solid #502314;
    border-bottom: 1px solid #502314;
    transform: rotate(-45deg);
    display: block;
    margin: 0 auto;
    position: relative;
    bottom: -12px;
}
  
  .timerangepicker-display.hour {
    margin-left: 10px;
  }
  .timerangepicker-display.period {
    margin-right: 10px;
  }

@media only screen and (max-width: 575px) {
  .timerangepicker-container {
    right: auto;
    left: 0;
  }

  .timerangepicker-container {
    width: 270px;
  }
  .timerangepicker-display {
      width: 28px;
      height: 28px;
      margin: 10px 5px;
      line-height: 6px;
      font-size: 13px;
  }
}




