.dateRange-range {
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  background-color: #FFFFFF;
  padding: 0 30px;
  margin-top: 4px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #1A1A1A;
  font-family: "Segoe UI", Arial, sans-serif;
  box-shadow: 0 2px 16px 0 rgba(26, 26, 26, 0.24);
  user-select: none;
  max-height: 0;
  transition: max-height 0.20s ease-out;
  overflow: hidden;
}

.dateRange-rangeVisible {
  max-height: 450px; /* todo */
  transition: max-height 0.25s ease-in;
}

.dateRange-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  margin: 15px 0;
}

.dateRange-month {
  display: flex;
  flex-wrap: wrap;
  width: 280px;
  padding: 0;
}

.dateRange-monthLabel {
  width: 100%;
  font: bold 1.15em/48px "Segoe UI", Arial, sans-serif;
  text-align: center;
  color: #1A1A1A;
}

.dateRange-day, .dateRange-dayEmpty {
  display: block;
  width: 40px;
  height: 40px;
  margin-top: 4px;
  font: 1em/40px "Segoe UI", Arial, sans-serif;
  text-align: center;
}

.dateRange-day {
  cursor: pointer;
}

.dateRange-dayCurrent {
  border-radius: 4px;
  background-color: #FFE684;
  font-weight: bold;
  color: #777777;
}

.dateRange-inRange {
  background-color: #F1F1F1;
}

.dateRange-start {
  background-color: #006CE4;
  border-radius: 4px 0 0 4px;
  color: #FFFFFF;
}

.dateRange-end {
  background-color: #006CE4;
  border-radius: 0 4px 4px 0;
  color: #FFFFFF;
}

.dateRange-start.dateRange-end {
  background-color: #006CE4;
  border-radius: 4px;
}

.dateRange-inRangeStart {
  background-color: #006CE4;
  border-radius: 4px;
}

.dateRange-dayDisabled {
  color: #A2A2A2;
  cursor: auto;
}

.dateRange-dateLabel {
  width: 40px;
  display: block;
  font: bold 14px/20px "Segoe UI", Arial, sans-serif;
  text-align: center;
  color: #474747;
  padding-bottom: 5px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 5px;
}

.dateRange-left {
  position: absolute;
  top: 15px;
  left: 30px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-rtl-flip="true"><path d="M15.087 19.236a.895.895 0 0 1-.642-.266l-6.057-6.057A1.308 1.308 0 0 1 8 11.967c-.008-.35.123-.69.364-.945l6.057-6.057a.909.909 0 0 1 1.284 0 .895.895 0 0 1 0 1.284l-5.694 5.718 5.718 5.718a.896.896 0 0 1 0 1.284.884.884 0 0 1-.642.266Z"/></svg>');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.dateRange-right {
  position: absolute;
  top: 15px;
  right: 30px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-rtl-flip="true"><path d="M8.913 19.236a.895.895 0 0 0 .642-.266l6.057-6.057a1.306 1.306 0 0 0 .388-.945c.008-.35-.123-.69-.364-.945L9.58 4.966a.909.909 0 0 0-1.284 0 .896.896 0 0 0 0 1.284l5.694 5.718-5.718 5.718a.896.896 0 0 0 0 1.284.884.884 0 0 0 .642.266Z"/></svg>');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.dateRange-left:hover, .dateRange-right:hover {
  border-radius: 4px;
  background-color: #F1F1F1;
}

.dateRange-time {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  margin: -5px 0 5px 0;
  padding: 10px 10px 10px 40px;
  color: #333333;
  font-size: 14px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10 0c5.52 0 10 4.48 10 10s-4.48 10-10 10S0 15.52 0 10 4.48 0 10 0Zm0 2c-4.415 0-8 3.585-8 8 0 4.416 3.585 8 8 8 4.416 0 8-3.584 8-8 0-4.415-3.584-8-8-8Z" fill="%23212121"/><path d="M7.336 4.173 9.199 10l-2.676 3.49 5.287-3.018-4.474-6.299Z" fill="%23212121"/></svg>');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 10px 50%;
  background-color: rgba(0,0,0,0.1);
}

.dateRange-time > * + * {
  margin-left: 5px;
}

.dateRange-timeNoInterval span, .dateRange-timeNoInterval input:last-of-type, .dateRange-timeHidden {
  display: none;
}

.dateRange-input {
  background: #FFFFFF;
  border: 1px solid #BFBFBF;
  font: 14px "Segoe UI";
  padding: 4px 7px;
  width: 50px;
}

.dateRange-buttons {
  max-width: 400px;
  margin: 0 auto 15px auto;
}

.dateRange-buttons > a {
  display: block;
  cursor: pointer;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 5px;
  background-color: #006CE4;
  font: bold 1em/50px Segoe UI,Arial;
  text-align: center;
  color: #FFFFFF;
}

.dateRange-reset {
  display: block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}

.dateRange-clear {
  width: 16px;
  height: 16px;
  background-size: 10px 10px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  cursor: pointer;
}

.dateRange-reset, .dateRange-clear {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M6.45 10 0 3.551 3.55 0 10 6.45 16.449 0 20 3.55 13.55 10 20 16.449 16.45 20 10 13.55 3.551 20 0 16.45 6.45 10Z" fill="%23212121"/></svg>');
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.dateRange-wrap {
  display: table;
  position: relative;
}
