.Wrapper {
}

.MenuWrapper {
  position: absolute;
  z-index: 3;
  width: 170px;
  height: 109px;
  box-sizing: border-box;
  border: 1px solid grey; /* fallback in case rgba is not supported */
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  background-color: white;
  margin-top: 3px;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.TimePickerMenu {
  display: flex;
  width: 170px;
  height: 109px;
  box-sizing: border-box;
  flex-direction: row;
  align-items: stretch;
  padding-top: 8px;
  padding-bottom: 8px;
}

.Colon {
  margin-top: auto;
  margin-bottom: auto;
}

.HoursColumn {
  display: flex;
  flex-direction: column;
  flex: 5 5 0;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

.MinColumn {
  display: flex;
  flex-direction: column;
  flex: 5 5 0;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

.TtColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 7 7 0;
  border-left: 1px solid black; /* fallback in case rgba is not supported */
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  margin-left: 7px;
  margin-right: 5px;
}

.Plus {
  transform: rotate(180deg);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Minus {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Plus:hover,
.Minus:hover {
  background-color: grey; /* fallback in case rgba is not supported */
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  cursor: pointer;
}

.Input {
  width: 78px;
  height: 30px;
  box-sizing: border-box;
  padding: 7px 10px;
  border-radius: 0; /* iPad adds border */
}
