/*
 * appointment-picker.css 2.0.0 | MIT License | github.com/jannicz/appointment-picker
 */
/* Default variation */
.appo-picker {
  position: absolute;
  display: none;
  background-color: white;
  max-width: 300px;
  padding: calc(var(--bs-body-font-size) * .5);
  border: 1px solid var(--bs-border-color);
  box-shadow: var(--bs-box-shadow-sm);
  border-radius: var(--bs-border-radius)!important;
  z-index: 9999;
  margin-top: calc(var(--bs-body-font-size) * .5);
  /* Large variation */
}

.appo-picker.is-open {
  display: inline-block;
  /* IE 9 */
  display: -ms-flexbox;
  /* IE 10 */
  display: -webkit-flex;
  /* Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.appo-picker.is-large {
  max-width: 420px;
  padding: 40px;
  box-shadow: var(--bs-box-shadow);
}

.appo-picker.is-large .appo-picker-title {
  height: 40px;
  font-size: 18px;
}

.appo-picker.is-large .appo-picker-list {
  max-width: 340px;
}

.appo-picker.is-large .appo-picker-list-item {
  width: 25%;
  height: 47px;
  font-size: 16px;
}

.appo-picker-title {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
}

.appo-picker-list {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 300px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.appo-picker-list-item {
  display: inline-block;
  /* IE 9 */
  display: flex;
  width: 25%;
  height: 34px;
}

.appo-picker-list-item input[type="button"] {
  width: 100%;
  height: 100%;
  margin: 0 1px 1px 0;
  border-color: var(--bs-white);
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-radius: 5px;
  background-color: var(--bs-light-bg-subtle);
  font-size: 12px;
  color: var(--bs-body-color);
  line-height: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.appo-picker-list-item input[type="button"].is-selected {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  /* box-shadow: inset 0 1px 2px #666; */
}

.appo-picker-list-item input[type="button"]:hover,
.appo-picker-list-item input[type="button"]:active,
.appo-picker-list-item input[type="button"]:focus {
  color: var(--bs-white);
  background-color: var(--bs-secondary);
  outline: none;
}

.appo-picker-list-item input[type="button"]:disabled {
  background-color: var(--bs-primary-bg-subtle);
  opacity: 0.3;
  color: var(--bs-body-color);
  cursor: not-allowed;
}