:root {
  --rc-picker-accent-color: #1677ff;
  --rc-picker-focus-color: #4096ff;
  --rc-picker-header-color: #0d64de;
  --rc-picker-range-color: #e6f4ff;
  --rc-picker-background-color: #fff;
  --rc-picker-range-hover-color: #c8dfff;
  --rc-picker-hover-color: rgba(0, 0, 0, 0.05);
  --rc-picker-range-outline-color: #7cb3ff;
  --rc-picker-cell-border-radius: 4px;
  --rc-picker-border-color: rgba(5, 5, 5, 0.06);
  --rc-picker-scrollbar-color: rgba(5, 5, 5, 0.2);
}

.rc-picker {
  margin: 0;
  padding: 4px 11px;
  font-size: 14px;
  line-height: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  transition: border 0.2s, box-shadow 0.2s;
  background-color: var(--rc-picker-background-color);
}
.rc-picker:hover .rc-picker-clear {
  opacity: 1;
}
.rc-picker-rtl {
  direction: rtl;
}
.rc-picker-rtl .rc-picker-input {
  text-align: right;
}
.rc-picker-rtl .rc-picker-clear {
  right: unset;
  left: 0;
}
.rc-picker-focused {
  outline: none;
  border-color: var(--rc-picker-focus-color);
}
.rc-picker-panel {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  vertical-align: top;
  border-radius: 8px;
  outline: none;
}
.rc-picker-panel-rtl {
  direction: rtl;
}
.rc-picker-panel-rtl .rc-picker-header-view > button:nth-child(1) {
  margin-left: 8px;
}
.rc-picker-panel-rtl .rc-picker-header-view > button:nth-child(2) {
  margin-left: 0;
}
.rc-picker-panel-rtl .rc-picker-header-nav-icon-prev,
.rc-picker-panel-rtl .rc-picker-header-nav-icon-super-prev {
  transform: rotate(135deg);
}
.rc-picker-panel-rtl .rc-picker-header-nav-icon-next,
.rc-picker-panel-rtl .rc-picker-header-nav-icon-super-next {
  transform: rotate(-45deg);
}
@supports (scrollbar-width: thin) {
  .rc-picker-panel * {
    scrollbar-width: thin;
    scrollbar-color: var(--rc-picker-scrollbar-color) transparent;
  }
}
.rc-picker-panel ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.rc-picker-panel ::-webkit-scrollbar-track {
  background-color: transparent;
}
.rc-picker-panel ::-webkit-scrollbar-thumb {
  background-color: var(--rc-picker-scrollbar-color);
  border-radius: 10px;
  min-height: 30px;
}
.rc-picker-panel ::-webkit-scrollbar-corner {
  display: none;
}
.rc-picker-inner {
  display: flex;
}
.rc-picker-decade-panel, .rc-picker-year-panel, .rc-picker-month-panel, .rc-picker-week-panel, .rc-picker-date-panel, .rc-picker-time-panel {
  display: flex;
  flex-direction: column;
}
.rc-picker-decade-panel table, .rc-picker-year-panel table, .rc-picker-month-panel table, .rc-picker-week-panel table, .rc-picker-date-panel table, .rc-picker-time-panel table {
  text-align: center;
  border-collapse: collapse;
}
.rc-picker-header {
  display: flex;
  padding: 0 8px;
  border-bottom: 1px solid var(--rc-picker-border-color);
}
.rc-picker-header > button {
  padding: 0 6px;
  opacity: 0.7;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
  font-size: inherit;
  color: inherit;
  flex-shrink: 0;
  direction: ltr;
}
.rc-picker-header > button:hover {
  opacity: 1;
}
.rc-picker-header > button:focus-visible {
  opacity: 1;
}
.rc-picker-header-view {
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-weight: 600;
  flex-grow: 1;
}
.rc-picker-header-view > button {
  padding: 0;
  position: relative;
  border: 0;
  color: inherit;
  font-weight: inherit;
  vertical-align: middle;
  background-color: transparent;
  cursor: pointer;
  transition: color 0.2s;
  font-size: inherit;
  flex-shrink: 0;
  line-height: 1;
}
.rc-picker-header-view > button:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0.3;
  transition: opacity 0.2s;
}
.rc-picker-header-view > button:hover {
  color: var(--rc-picker-accent-color);
}
.rc-picker-header-view > button:hover:after {
  opacity: 1;
}
.rc-picker-header-view > button:focus-visible {
  color: var(--rc-picker-accent-color);
}
.rc-picker-header-view > button:focus-visible:after {
  opacity: 1;
}
.rc-picker-header-nav-icon, .rc-picker-header-nav-icon-super {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  opacity: 0.5;
  color: inherit;
}
.rc-picker-header-nav-icon:before, .rc-picker-header-nav-icon:after, .rc-picker-header-nav-icon-super:before, .rc-picker-header-nav-icon-super:after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: inline-block;
  border: 0 solid currentcolor;
  border-block-start-width: 1.5px;
  border-block-end-width: 0;
  border-inline-start-width: 1.5px;
  border-inline-end-width: 0;
}
.rc-picker-header-nav-icon:before, .rc-picker-header-nav-icon-super:before {
  top: 0;
  inset-inline-start: 0;
}
.rc-picker-header-nav-icon:after, .rc-picker-header-nav-icon-super:after {
  top: 4px;
  inset-inline-start: 4px;
}
.rc-picker-header-nav-icon-prev, .rc-picker-header-nav-icon-super-prev {
  transform: rotate(-45deg);
}
.rc-picker-header-nav-icon-next, .rc-picker-header-nav-icon-super-next {
  transform: rotate(135deg);
}
.rc-picker-header-nav-icon:before {
  content: "";
}
.rc-picker-header-nav-icon-super:before, .rc-picker-header-nav-icon-super:after {
  content: "";
}
.rc-picker-body {
  padding: 8px 18px;
}
.rc-picker-content th,
.rc-picker-content td {
  min-width: 24px;
  font-weight: 400;
  padding-block: 4px;
}
.rc-picker-content th {
  color: var(--rc-picker-header-color);
  font-weight: 600;
}
.rc-picker-cell {
  opacity: 0.4;
  position: relative;
}
.rc-picker-cell:before {
  position: absolute;
  inset: 4px 0;
  z-index: 1;
  transition: all 0.3s;
}
.rc-picker-cell-inner {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 20px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: var(--rc-picker-cell-border-radius);
  transition: background-color 0.2s, border 0.2s;
  z-index: 2;
}
.rc-picker-cell-inner:hover {
  background-color: var(--rc-picker-hover-color);
}
.rc-picker-cell-in-view {
  opacity: 1;
}
.rc-picker-cell-disabled {
  opacity: 0.2;
}
.rc-picker-cell-in-range:before, .rc-picker-cell-range-start:before, .rc-picker-cell-range-end:before {
  content: "";
  background-color: var(--rc-picker-range-color);
}
.rc-picker-cell-in-range.rc-picker-cell-range-hover:before, .rc-picker-cell-range-start.rc-picker-cell-range-hover:before, .rc-picker-cell-range-end.rc-picker-cell-range-hover:before {
  background-color: var(--rc-picker-range-hover-color);
}
.rc-picker-cell-range-start:before {
  border-top-left-radius: var(--rc-picker-cell-border-radius);
  border-bottom-left-radius: var(--rc-picker-cell-border-radius);
}
.rc-picker-cell-range-end:before {
  border-top-right-radius: var(--rc-picker-cell-border-radius);
  border-bottom-right-radius: var(--rc-picker-cell-border-radius);
}
.rc-picker-cell-range-hover-start, .rc-picker-cell-range-hover-end, .rc-picker-cell-range-hover {
  position: relative;
}
.rc-picker-cell-range-hover-start::after, .rc-picker-cell-range-hover-end::after, .rc-picker-cell-range-hover::after {
  position: absolute;
  inset: 4px 0;
  border: 1px dashed var(--rc-picker-range-outline-color);
  border-right: 0;
  border-left: 0;
  content: "";
  pointer-events: none;
  z-index: 2;
}
.rc-picker-cell-range-hover-start::after {
  border-left: 1px dashed var(--rc-picker-range-outline-color) !important;
  border-top-left-radius: var(--rc-picker-cell-border-radius);
  border-bottom-left-radius: var(--rc-picker-cell-border-radius);
}
.rc-picker-cell-range-hover-end::after {
  border-right: 1px dashed var(--rc-picker-range-outline-color) !important;
  border-top-right-radius: var(--rc-picker-cell-border-radius);
  border-bottom-right-radius: var(--rc-picker-cell-border-radius);
}
.rc-picker-cell-today > .rc-picker-cell-inner {
  border: 1px solid var(--rc-picker-accent-color);
}
.rc-picker-cell-range-start > .rc-picker-cell-inner, .rc-picker-cell-range-end > .rc-picker-cell-inner, .rc-picker-cell-selected > .rc-picker-cell-inner {
  color: #fff;
  background-color: var(--rc-picker-accent-color);
}
.rc-picker-presets {
  padding: 8px;
  border-right: 1px solid var(--rc-picker-border-color);
}
.rc-picker-presets ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rc-picker-presets ul:last-child {
  margin-bottom: 0;
}
.rc-picker-presets li {
  margin-bottom: 8px;
  padding: 2px 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.rc-picker-presets li:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.rc-picker-presets li.is-active-date {
  color: #fff;
  background-color: var(--rc-picker-header-color);
}
.rc-picker-footer, .rc-picker-picker-footer {
  padding: 4px;
  border-top: 1px solid var(--rc-picker-border-color);
}
.rc-picker-ranges {
  margin: 0;
  padding: 4px;
  overflow: hidden;
  list-style: none;
}
.rc-picker-ranges > li {
  display: inline-block;
}
.rc-picker-btn {
  float: right;
}
.rc-picker-btn button {
  padding: 2px 8px;
  border-radius: 4px;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.rc-picker-btn button:disabled {
  cursor: not-allowed;
  border-color: #d9d9d9;
  color: rgba(0, 0, 0, 0.25);
  background-color: rgba(0, 0, 0, 0.04);
  box-shadow: none;
}
.rc-picker-btn button:not(:focus-visible) {
  outline: none;
}
.rc-picker-ok button {
  color: #fff;
  background-color: var(--rc-picker-accent-color);
  box-shadow: 0 2px 0 rgba(5, 145, 255, 0.1);
}
.rc-picker-cancel {
  margin-right: 12px;
}
.rc-picker-cancel button {
  color: var(--rc-picker-accent-color);
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.14);
}
.rc-picker-now-btn, .rc-picker-today-btn {
  color: var(--rc-picker-accent-color);
  cursor: pointer;
}
.rc-picker-year-panel .rc-picker-cell-inner, .rc-picker-month-panel .rc-picker-cell-inner {
  width: 80px;
}
.rc-picker-week-panel-row:not(.rc-picker-week-panel-row-selected):not(.rc-picker-week-panel-row-range-start):not(.rc-picker-week-panel-row-range-end):hover .rc-picker-cell:before {
  content: "";
  background-color: var(--rc-picker-hover-color);
}
.rc-picker-week-panel-row-range-hover .rc-picker-cell:before {
  content: "";
  background-color: var(--rc-picker-range-hover-color);
}
.rc-picker-week-panel-row-selected .rc-picker-cell, .rc-picker-week-panel-row-range-start .rc-picker-cell, .rc-picker-week-panel-row-range-end .rc-picker-cell {
  opacity: 1;
}
.rc-picker-week-panel-row-selected .rc-picker-cell:before, .rc-picker-week-panel-row-range-start .rc-picker-cell:before, .rc-picker-week-panel-row-range-end .rc-picker-cell:before {
  content: "";
  background-color: var(--rc-picker-accent-color);
}
.rc-picker-week-panel-row-selected .rc-picker-cell .rc-picker-cell-inner, .rc-picker-week-panel-row-range-start .rc-picker-cell .rc-picker-cell-inner, .rc-picker-week-panel-row-range-end .rc-picker-cell .rc-picker-cell-inner {
  color: #fff;
  background-color: var(--rc-picker-accent-color);
}
.rc-picker-week-panel-row-selected .rc-picker-cell:first-child:before, .rc-picker-week-panel-row-range-start .rc-picker-cell:first-child:before, .rc-picker-week-panel-row-range-end .rc-picker-cell:first-child:before {
  border-top-left-radius: var(--rc-picker-cell-border-radius);
  border-bottom-left-radius: var(--rc-picker-cell-border-radius);
}
.rc-picker-week-panel-row-selected .rc-picker-cell:last-child:before, .rc-picker-week-panel-row-range-start .rc-picker-cell:last-child:before, .rc-picker-week-panel-row-range-end .rc-picker-cell:last-child:before {
  border-top-right-radius: var(--rc-picker-cell-border-radius);
  border-bottom-right-radius: var(--rc-picker-cell-border-radius);
}
.rc-picker-week-panel .rc-picker-cell-week {
  color: #999;
  font-weight: bold;
  font-size: 12px;
}
.rc-picker-week-panel .rc-picker-cell:hover > .rc-picker-cell-inner,
.rc-picker-week-panel .rc-picker-cell-selected > .rc-picker-cell-inner {
  background: transparent;
}
.rc-picker-time-panel {
  width: auto;
}
.rc-picker-time-panel .rc-picker-content {
  display: flex;
  max-height: 212px;
}
.rc-picker-time-panel-column {
  flex: none;
  width: 50px;
  margin: 4px 0;
  padding: 0 0 180px 0;
  overflow-x: hidden;
  overflow-y: hidden;
  font-size: 12px;
  text-align: left;
  list-style: none;
  transition: background 0.3s;
}
.rc-picker-time-panel-column:not(:last-child) {
  border-right: 1px solid var(--rc-picker-border-color);
}
.rc-picker-time-panel-column-active {
  background: rgba(0, 0, 255, 0.1);
}
.rc-picker-time-panel-column:hover {
  overflow-y: auto;
}
.rc-picker-time-panel-column > li {
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.rc-picker-time-panel-column > li.rc-picker-time-panel-cell {
  margin-inline: 4px;
  width: 36px;
}
.rc-picker-time-panel-column > li.rc-picker-time-panel-cell-disabled {
  opacity: 0.5;
}
.rc-picker-time-panel-column > li .rc-picker-time-panel-cell-inner {
  display: block;
  line-height: 26px;
  margin: 0;
  color: #333;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.rc-picker-time-panel-column > li .rc-picker-time-panel-cell-inner:hover {
  background: rgba(0, 0, 0, 0.04);
}
.rc-picker-datetime-panel {
  display: flex;
}
.rc-picker-datetime-panel .rc-picker-time-panel {
  border-left: 1px solid var(--rc-picker-border-color);
}
.rc-picker-datetime-panel .rc-picker-date-panel,
.rc-picker-datetime-panel .rc-picker-time-panel {
  transition: opacity 0.3s;
}
.rc-picker-datetime-panel-active .rc-picker-date-panel,
.rc-picker-datetime-panel-active .rc-picker-time-panel {
  opacity: 0.3;
}
.rc-picker-datetime-panel-active .rc-picker-date-panel-active,
.rc-picker-datetime-panel-active .rc-picker-time-panel-active {
  opacity: 1;
}
.rc-picker-input {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  background-color: inherit;
}
.rc-picker-input > input {
  width: 100%;
  min-width: 1px;
  padding: 0;
  color: inherit;
  font-size: inherit;
  background-color: inherit;
  border-radius: 0;
  transition: all 0.2s;
  border: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rc-picker-input > input::placeholder {
  font-size: 13px;
}
.rc-picker-input > input:focus {
  outline: none;
}
.rc-picker-input > input::-moz-placeholder {
  opacity: 0.5;
}
.rc-picker-input > input::placeholder {
  opacity: 0.5;
}
.rc-picker-suffix-icon {
  opacity: 0.5;
}
.rc-picker-range-separator {
  align-items: center;
  padding: 0 8px;
  line-height: 1;
}
.rc-picker-range-separator-inner {
  opacity: 0.5;
}
.rc-picker-clear {
  padding: 2px 0;
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
  background-color: inherit;
}
.rc-picker-clear-icon {
  opacity: 0.5;
  display: block;
}
.rc-picker-clear-icon svg {
  display: block;
}
.rc-picker-dropdown {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 14px;
  z-index: 1050;
}
.rc-picker-dropdown-range {
  padding: 10px 0;
}
.rc-picker-dropdown-hidden {
  display: none;
}
.rc-picker-dropdown-placement-topLeft .rc-picker-range-arrow, .rc-picker-dropdown-placement-topRight .rc-picker-range-arrow {
  bottom: 0;
  transform: translateY(100%) rotate(180deg);
}
.rc-picker-dropdown-placement-bottomLeft .rc-picker-range-arrow, .rc-picker-dropdown-placement-bottomRight .rc-picker-range-arrow {
  top: 0;
  transform: translateY(-100%);
}
.rc-picker-dropdown .rc-picker-range-arrow {
  position: absolute;
  width: 16px;
  height: 16px;
  transition: left 0.3s ease-out;
  overflow: hidden;
  z-index: 1;
  margin-inline-start: 16px;
}
.rc-picker-dropdown .rc-picker-range-arrow::before {
  content: "";
  width: 16px;
  height: 16px;
  left: 0;
  position: absolute;
  bottom: -11.3475177305px;
  border-radius: 2px 0 0 0;
  background-color: var(--rc-picker-background-color);
  transform: rotate(45deg);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.rc-picker-dropdown-rtl .rc-picker-range-arrow {
  margin-inline-start: 0;
  margin-inline-end: 16px;
}
.rc-picker-range-wrapper {
  display: flex;
  position: relative;
}
.rc-picker-range .rc-picker-active-bar {
  bottom: 0px;
  height: 1px;
  margin-inline-start: 9px;
  background: var(--rc-picker-accent-color);
  opacity: 0;
  transition: all 0.3s ease-out;
}
.rc-picker-range.rc-picker-focused .rc-picker-active-bar {
  opacity: 1;
}
.rc-picker-range .rc-picker-clear {
  right: 11px;
}
.rc-picker-range.rc-picker-rtl .rc-picker-clear {
  right: unset;
  left: 11px;
}
.rc-picker-panel-container {
  overflow: hidden;
  vertical-align: top;
  background: var(--rc-picker-background-color);
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  transition: margin 0.3s;
}
.rc-picker-panel-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.rc-picker-panel-top {
  display: flex;
}
.rc-picker-panels-top {
  display: flex;
}
.rc-picker-panels {
  display: flex;
}
.rc-picker-panels-vertical {
  flex-direction: column;
}
