ftb-datepicker-stories {
  display: block;
}
ftb-datepicker-stories .active-button {
  background: #b9f0fa;
}
ftb-datepicker-stories ftb-datepicker {
  display: block;
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  background: #fafafa;
  overflow: hidden;
}
ftb-datepicker-stories ftb-datepicker .calendar {
  font-size: 13px;
}
ftb-datepicker-stories ftb-datepicker .calendar .button-group .button {
  height: 50px;
  width: 50%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #efefef;
}
ftb-datepicker-stories ftb-datepicker .calendar .button-group .button.button-from {
  border-right: 1px solid #fff;
}
ftb-datepicker-stories ftb-datepicker .calendar .button-group .button.active {
  background: rgba(0, 0, 0, 0.2);
}
ftb-datepicker-stories ftb-datepicker .calendar .button-group .button p {
  margin: 0;
}
ftb-datepicker-stories ftb-datepicker .calendar .button-group .button p.title {
  margin-bottom: 5px;
}
ftb-datepicker-stories ftb-datepicker .calendar .month-row {
  height: 40px;
  padding: 0 4px;
}
ftb-datepicker-stories ftb-datepicker .calendar .month-row button {
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
}
ftb-datepicker-stories ftb-datepicker .calendar .month-row button ftb-icon {
  height: 10px;
  width: 10px;
  fill: rgba(0, 0, 0, 0.6);
}
ftb-datepicker-stories ftb-datepicker .calendar .days-row {
  background: rgba(0, 0, 0, 0.2);
  grid-gap: 1px;
  font-weight: 600;
}
ftb-datepicker-stories ftb-datepicker .calendar .day-name {
  height: 40px;
}
ftb-datepicker-stories ftb-datepicker .calendar .slots {
  grid-gap: 1px;
  padding: 1px 0;
}
ftb-datepicker-stories ftb-datepicker .calendar .slots .slot {
  height: 35px;
}
ftb-datepicker-stories ftb-datepicker .calendar .slots .slot:not(.empty) {
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: rgba(200, 200, 200, 0.15);
}
ftb-datepicker-stories ftb-datepicker .calendar .slots .slot.active-from {
  background: #8c3636 !important;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
ftb-datepicker-stories ftb-datepicker .calendar .slots .slot.active-to {
  background: #8c3636 !important;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
ftb-datepicker-stories ftb-datepicker .calendar .slots .slot.active-between {
  background: rgba(140, 54, 54, 0.2);
}
ftb-datepicker-stories ftb-datepicker .submit-button {
  height: 40px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  font-weight: 700;
  cursor: pointer;
}
ftb-datepicker-stories .selected {
  padding-top: 20px;
}
ftb-datepicker-stories .selected span {
  margin-left: 5px;
  margin-right: 5px;
}
ftb-datepicker-stories .selected button {
  margin-right: 10px;
}