/* DayPicker styles */

.DayPicker {
  display: inline-block;
}

.DayPicker-wrapper {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-bottom: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.DayPicker-Months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.DayPicker-Month {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0 1rem;
  margin-top: 1rem;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  cursor: pointer;
  top: 1rem;
  right: 1.5rem;
  margin-top: 2px;
  color: #8b9898;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5rem;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.DayPicker-NavButton--next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  padding: 0 0.5rem;
  display: table-caption;
  text-align: left;
  margin-bottom: 0.5rem;
}

.DayPicker-Caption > div {
  font-size: 1.15rem;
  font-weight: 500;
}

.DayPicker-Weekdays {
  margin-top: 1rem;
  display: table-header-group;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5rem;
  font-size: 0.875em;
  text-align: center;
  color: #8b9898;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  outline: none;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5rem;
  text-align: right;
  vertical-align: middle;
  min-width: 1rem;
  font-size: 0.75em;
  cursor: pointer;
  color: #8b9898;
  border-right: 1px solid #eaecec;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5rem;
}

.DayPicker-TodayButton {
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  color: #4a90e2;
  font-size: 0.875em;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #d0021b;
  font-weight: 700;
}

.DayPicker-Day--outside {
  cursor: default;
  color: #8b9898;
}

.DayPicker-Day--disabled {
  color: #dce0e0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #f7f8f8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #dce0e0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;
  color: #f0f8ff;
  background-color: #4a90e2;
  border-radius: 100%;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51a0fa;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #f0f8ff;
  border-radius: 50%;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  left: 0;
  z-index: 1;
  position: absolute;
  background: white;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.day-picker .DayPicker{font-size:12px;display:block}.day-picker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover{background-color:transparent}.day-picker .DayPicker:focus{outline:none}.day-picker .DayPicker-wrapper{padding:0}.day-picker .DayPicker-wrapper:focus{outline:none}.day-picker .DayPicker-Month,.day-picker .DayPicker-Weekdays{margin-top:22px}.day-picker .DayPicker-Weekdays:focus{outline:none}.day-picker .DayPicker-Weekday{padding:0 15px;text-transform:uppercase;color:#00aae8;font-size:11px}.day-picker .DayPicker-Weekday:focus{outline:none}.day-picker .DayPicker-Day{padding:8px 10px;color:#0d0f11;background-color:transparent;font-weight:400}.day-picker .DayPicker-Day:not(.DayPicker-Day--today){color:#0d0f11}.day-picker .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside){background-color:transparent;color:#0d0f11}.day-picker .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover{background-color:transparent}.day-picker .DayPicker-Day:hover{color:#0d0f11;background-color:transparent;font-weight:400}.day-picker .DayPicker-Day:hover:not(.DayPicker-Day--today){color:#0d0f11}.day-picker .DayPicker-Day:hover:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside){background-color:transparent;color:#0d0f11}.day-picker .DayPicker-Day:hover:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover{background-color:transparent}.day-picker .DayPicker-Day--selected{color:#0d0f11;background-color:transparent;font-weight:400}.day-picker .DayPicker-Day--selected:not(.DayPicker-Day--today){color:#0d0f11}.day-picker .DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside){background-color:transparent;color:#0d0f11}.day-picker .DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover{background-color:transparent}.day-picker .DayPicker-Day--today{color:#0d0f11;background-color:transparent;font-weight:400;position:relative}.day-picker .DayPicker-Day--today:not(.DayPicker-Day--today){color:#0d0f11}.day-picker .DayPicker-Day--today:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside){background-color:transparent;color:#0d0f11}.day-picker .DayPicker-Day--today:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover{background-color:transparent}.day-picker .DayPicker-Day.DayPicker-Day--outside{color:#8b9898}.day-picker .DayPicker-Day.DayPicker-Day--disabled{color:#8b9898;pointer-events:none}.day-picker .DayPicker-NavBar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:30px;padding:0 17px}.day-picker .DayPicker-NavBar-month{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center;font-size:14px;color:#8e8e8e;width:calc(100% - 40px)}.day-picker .DayPicker-NavBar-next-button{padding:5px;width:20px}.day-picker .DayPicker-NavBar-next-button img{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.day-picker .DayPicker-NavBar-next-button.hide{visibility:hidden}.day-picker .DayPicker-NavBar-prev-button{padding:5px;width:20px}.day-picker .DayPicker-NavBar-prev-button.hide{visibility:hidden}.day-picker-day{width:24px;height:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;border-radius:50%;overflow:hidden;-ms-flex-preferred-size:0;flex-basis:0}.day-picker-day.day-picker-day--today{border:1px solid #00aae8}.day-picker-day.day-picker-day--selected:not(.day-picker-day--disabled){background-color:#00aae8;color:#fff}.day-picker-day:not(.day-picker-day--selected):hover{background-color:#d3dbde}.day-picker-day.day-picker-day--selected.day-picker-day--disabled{background-color:#d0021b;color:#fff}.day-picker-plugin .DayPicker-Day{padding:5px;margin-top:10px;margin-left:10px;margin-right:10px}.day-picker-plugin .DayPicker-NavBar{padding:0 5px}.day-picker-plugin .DayPicker-Month{margin-top:10px;margin-bottom:5px}.day-picker-plugin .DayPicker-Weekday{padding:10px}

/*# sourceMappingURL=common.admin.aida.app.outlook.scheduleMeeting.5bd85d9ecadc272cf6aa.css.map*/