/* Tabs */
.rl-tabs {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.rl-tabs .rl-tabs__nav-wrap {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: -1px 0 0px #DAE3E9;
}
.rl-tabs .rl-tabs__nav-wrap .rl-tabs__nav-scroll {
  overflow: hidden;
}
.rl-tabs .rl-tabs__nav-wrap .rl-tabs__nav-scroll .rl-tabs__nav {
  position: relative;
  white-space: nowrap;
  transition: transform 0.3s;
  float: left;
  z-index: 2;
}
.rl-tabs .rl-tabs__nav-wrap .rl-tabs__nav-scroll .rl-tabs__nav .rl-tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 46px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: #303133;
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}
.rl-tabs .rl-tabs__nav-wrap .rl-tabs__nav-scroll .rl-tabs__nav .rl-tabs__item:hover {
  color: #409eff;
}
.rl-tabs .rl-tabs__nav-wrap .rl-tabs__nav-scroll .rl-tabs__nav .rl-tabs__item.is-active {
  color: #409eff;
}
.rl-tabs .rl-tabs__nav-wrap .rl-tabs__nav-scroll .rl-tabs__nav .rl-tabs__item.is-active::after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 4px 4px;
  background-color: #0096F7;
  transition: all 0.3s;
}
.rl-tabs .rl-tabs__nav-wrap:after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #EBF3FF;
}
.rl-tabs .rl-tabs__content {
  padding: 20px 0;
  overflow: hidden;
  border-radius: 3px;
  background-color: #FFF;
  box-shadow: 0 1px 2px 0 rgba(43, 59, 93, 0.29);
}
.rl-tabs .rl-tabs__content .rl-tabs__pane {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 20px;
  left: 20px;
}
.rl-tabs .rl-tabs__content .rl-tabs__pane.is-active {
  display: flex;
  opacity: 1;
  position: static;
}

/* Popover */
.rl-popover {
  position: absolute;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 999;
  overflow: hidden;
  display: none;
}
.rl-popover .rl-popover__header {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ebeef5;
}
.rl-popover .rl-popover__header .rl-popover__header-title {
  font-size: 20px;
  font-weight: 600;
  color: #303133;
}
.rl-popover .rl-popover__header .rl-popover__header-close {
  font-size: 16px;
  cursor: pointer;
  color: #909399;
}
.rl-popover .rl-popover__content {
  padding: 12px;
  color: #606266;
}
.rl-popover .rl-popover__footer {
  padding: 12px;
  text-align: right;
  border-top: 1px solid #ebeef5;
}
.rl-popover .rl-popover__footer .rl-popover__footer-btn {
  cursor: pointer;
  margin-left: 8px;
  padding: 6px 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #07133B;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: #FFF;
  border-radius: 6px;
}
.rl-popover .rl-popover__footer .rl-popover__footer-confirm {
  border: 1px solid #409eff;
  color: #409eff;
}
.rl-popover .rl-popover__footer .rl-popover__footer-cancel {
  border: 1px solid #606266;
  color: #606266;
}

.rl-popover-animation {
  transition: all 0.3s ease;
  opacity: 0;
  height: 0;
}

/* Pagination */
.rl-pagination {
  padding: 12px;
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 12px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.rl-pagination .rl-total {
  margin-right: 15px;
}
.rl-pagination .rl-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.rl-pagination .rl-pager .rl-page-item {
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.rl-pagination .rl-pager .rl-page-item i {
  pointer-events: none;
}
.rl-pagination .rl-pager .rl-page-item.disabled {
  color: #c0c4cc;
  cursor: not-allowed;
}
.rl-pagination .rl-pager .rl-page-item.disabled:hover {
  cursor: not-allowed;
  background: none;
  color: #c0c4cc;
  border-color: #ddd;
}
.rl-pagination .rl-pager .rl-page-item.more {
  border: none;
  cursor: default;
}
.rl-pagination .rl-pager .rl-page-item.active {
  background: #409EFF;
  color: white;
  border-color: #409EFF;
}
.rl-pagination .rl-pager .rl-page-item:hover {
  background: #409EFF;
  color: white;
  border-color: #409EFF;
}
.rl-pagination .rl-sizer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rl-pagination .rl-sizer .rl-sizer-selected {
  min-width: 100px;
  height: 32px;
  padding: 0 24px 0 12px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
}
.rl-pagination .rl-sizer .rl-sizer-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.rl-pagination .rl-sizer .rl-sizer-options {
  max-height: 200px;
  overflow-y: auto;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 5px 0;
  padding: 0;
  list-style: none;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  background: white;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(-10px);
}
.rl-pagination .rl-sizer .rl-sizer-options li {
  padding: 0 10px;
  height: 28px;
  line-height: 28px;
  cursor: pointer;
}
.rl-pagination .rl-sizer .rl-sizer-options li:hover {
  background-color: #f5f7fa;
}
.rl-pagination .rl-sizer .rl-sizer-options li.active {
  color: #409EFF;
  font-weight: bold;
}
.rl-pagination .rl-sizer .rl-sizer-options.rl-dropdown {
  top: 100%;
  bottom: auto;
  margin-top: 5px;
}
.rl-pagination .rl-sizer .rl-sizer-options.rl-dropup {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}
.rl-pagination .rl-sizer.show-options .rl-sizer-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.rl-pagination .rl-sizer.show-options .rl-sizer-options {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.rl-pagination .rl-jumper {
  text-align: center;
  margin: 0 5px;
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.rl-pagination .rl-jumper .rl-jumper-input-container {
  position: relative;
  margin: 0 5px;
}
.rl-pagination .rl-jumper .rl-jumper-input-container .rl-jumper-input {
  width: 50px;
  height: 28px;
  padding: 0 5px;
  text-align: center;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}
.rl-pagination .rl-jumper .rl-jumper-input-container .rl-jumper-input:focus {
  border-color: #409EFF;
}

.rl-pagination.gdg-style .rl-pager .rl-page-item {
  color: #000;
  border: none;
  border-radius: 50%;
  background: #E5E3DC;
}
.rl-pagination.gdg-style .rl-pager .rl-page-item.prev, .rl-pagination.gdg-style .rl-pager .rl-page-item.next {
  color: #B78E4F;
  font-size: 18px;
  font-weight: 900;
  background: none;
}
.rl-pagination.gdg-style .rl-pager .rl-page-item.prev:hover, .rl-pagination.gdg-style .rl-pager .rl-page-item.next:hover {
  color: #B78E4F;
  background: none;
}
.rl-pagination.gdg-style .rl-pager .rl-page-item.disabled {
  color: #c0c4cc;
}
.rl-pagination.gdg-style .rl-pager .rl-page-item.disabled:hover {
  background: none;
  color: #c0c4cc;
}
.rl-pagination.gdg-style .rl-pager .rl-page-item.more {
  color: #000;
  background: none;
}
.rl-pagination.gdg-style .rl-pager .rl-page-item.active {
  background: rgba(183, 142, 79, 0.6);
  color: #000;
}
.rl-pagination.gdg-style .rl-pager .rl-page-item:hover {
  background: rgba(183, 142, 79, 0.6);
  color: #000;
}
.rl-pagination.gdg-style .rl-sizer .rl-sizer-selected {
  border: 1px solid rgba(183, 142, 79, 0.6);
}
.rl-pagination.gdg-style .rl-sizer .rl-sizer-options {
  border-radius: 4px;
  background: white;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.rl-pagination.gdg-style .rl-sizer .rl-sizer-options li:hover {
  color: #B78E4F;
  font-weight: bold;
}
.rl-pagination.gdg-style .rl-sizer .rl-sizer-options li.active {
  color: #B78E4F;
  font-weight: bold;
}
.rl-pagination.gdg-style .rl-jumper .rl-jumper-input-container .rl-jumper-input {
  border: 1px solid rgba(183, 142, 79, 0.6);
}
.rl-pagination.gdg-style .rl-jumper .rl-jumper-input-container .rl-jumper-input:focus {
  border-color: #B78E4F;
}

.rl-pagination.rl-start {
  justify-content: flex-start;
}

.rl-pagination.rl-center {
  justify-content: center;
}

.rl-pagination.rl-end {
  justify-content: flex-end;
}

.rl-pagination.disabled .rl-page-item {
  opacity: 0.6;
  pointer-events: none;
}

/* Notification */
.rl-notification {
  position: fixed;
  width: 330px;
  height: fit-content;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #ebeef5;
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  overflow: hidden;
  z-index: 9999;
}
.rl-notification .rl-notification__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.rl-notification .rl-notification__header .rl-notification__header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.rl-notification .rl-notification__header .rl-notification__header-icon {
  font-size: 18px;
}
.rl-notification .rl-notification__header .rl-notification__header-title {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}
.rl-notification .rl-notification__header .rl-notification__header-close {
  cursor: pointer;
  color: #909399;
  font-size: 16px;
}
.rl-notification .rl-notification__content {
  padding-left: 28px;
  font-size: 14px;
  line-height: 21px;
  color: #303133;
}

.rl-notification.success {
  color: #0DC36C;
}

.rl-notification.warning {
  color: #e6a23c;
}

.rl-notification.info {
  color: #909399;
}

.rl-notification.error {
  color: #B71F23;
}

.rl-notification-enter {
  opacity: 0;
}

.rl-notification-enter-active {
  animation: notification-in 0.3s ease;
}

.rl-notification-leave {
  opacity: 1;
  transform: translateY(0);
}

.rl-notification-leave-active {
  animation: notification-out 0.3s ease forwards;
}

.rl-position-top-left {
  left: 16px;
}

.rl-position-top-right {
  right: 16px;
}

.rl-position-bottom-left {
  left: 16px;
  bottom: 16px;
}

.rl-position-bottom-right {
  right: 16px;
  bottom: 16px;
}

@keyframes notification-in {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes notification-out {
  to {
    transform: translateY(-30px);
    opacity: 0;
  }
}
/* Input */
.rl-input {
  width: 100%;
  height: auto;
  padding: 2px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  background-color: #FFF;
}
.rl-input .rl-input__inner {
  flex: 1;
  height: 40px;
  padding: 0 10px;
  color: #07133B;
  font-size: 16px;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-appearance: none;
  -moz-appearance: textfield;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
.rl-input .rl-input__inner[disabled] {
  background-color: #f5f7fa;
  border-color: #e4e7ed;
  color: #c0c4cc;
  cursor: not-allowed;
}
.rl-input .rl-input__inner::placeholder {
  color: #c0c4cc;
}
.rl-input .rl-input__inner:focus {
  border-color: #0080FF;
  box-shadow: none;
}
.rl-input .rl-input-group__prepend, .rl-input .rl-input-group__append {
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.rl-input .rl-input-group__prepend {
  padding-left: 10px;
  border-right: 0;
  border-radius: 4px 0 0 4px;
}
.rl-input .rl-input-group__append {
  padding-right: 10px;
  border-left: 0;
  border-radius: 0 4px 4px 0;
}
.rl-input .rl-input__prefix, .rl-input .rl-input__suffix {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #909399;
  font-size: 16px;
  cursor: pointer;
  z-index: 1;
}
.rl-input .rl-input__prefix {
  padding-left: 10px;
}
.rl-input .rl-input__suffix {
  padding-right: 10px;
}
.rl-input .rl-input__clear, .rl-input .rl-input__toggle {
  width: 30px;
  padding-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #909399;
  font-size: 16px;
  cursor: pointer;
  z-index: 1;
}
.rl-input .rl-input__clear:hover, .rl-input .rl-input__toggle:hover {
  color: #031242;
}
.rl-input .rl-input__count {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 12px;
  color: #909399;
  background: #fff;
  padding-left: 5px;
}

.rl-input.rl-textarea {
  height: fit-content;
  align-items: flex-start;
  border-radius: 4px;
  background-color: #FFF;
}
.rl-input.rl-textarea .rl-textarea__inner {
  flex: 1;
  padding: 10px;
  min-height: 80px;
  color: #07133B;
  font-size: 16px;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  resize: vertical;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.rl-input.rl-textarea .rl-textarea__inner::placeholder {
  color: #c0c4cc;
}
.rl-input.rl-textarea .rl-textarea__inner:focus {
  border-color: #0080FF;
  box-shadow: none;
}

.rl-form-check-error {
  border: 1px solid red !important;
}

.rl-input-error {
  position: absolute;
  left: 0;
  bottom: -20px;
  color: red;
  font-size: 14px;
  margin-top: 4px;
}

.rl-input-list {
  margin-top: -16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid #D3DBE2;
  background: #FFF;
}
.rl-input-list .rl-input-list__item {
  cursor: pointer;
  width: 100%;
  padding: 9px 12px;
  color: #161412;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 6px;
}
.rl-input-list .rl-input-list__item:hover {
  background: #F0F4FF;
}

/* Collapse */
.rl-collapse {
  width: 100%;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  background-color: #fff;
}

.rl-collapse__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: #303133;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}
.rl-collapse__header .rl-collapse__header-arrow {
  transition: transform 0.3s;
  font-style: normal;
}

.rl-collapse__header:hover {
  background-color: #f5f7fa;
}

.rl-collapse__header.is-active .rl-collapse__header-arrow {
  transform: rotate(180deg);
}

.rl-collapse__content {
  padding: 0;
  overflow: hidden;
  background-color: #fff;
}

/* Carousel */
.rl-carousel {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.rl-carousel .rl-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(31, 45, 61, 0.11);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}
.rl-carousel .rl-carousel__arrow.always-arrow {
  opacity: 1;
}
.rl-carousel .rl-carousel__arrow--left {
  left: 16px;
}
.rl-carousel .rl-carousel__arrow--right {
  right: 16px;
}
.rl-carousel .rl-carousel__container {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.rl-carousel .rl-carousel__container .rl-carousel__items {
  display: flex !important;
  white-space: normal !important;
  gap: 24px;
  width: 100%;
  position: absolute;
  height: 100%;
  transition: transform 0.5s ease;
}
.rl-carousel .rl-carousel__container .rl-carousel__items .rl-carousel__item {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}
.rl-carousel .rl-carousel__container .rl-carousel__items .rl-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rl-carousel .rl-carousel__container .rl-carousel__items .rl-carousel__item .rl-carousel__item-text {
  color: #031242;
  font-family: Switzer, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.24px;
}
.rl-carousel .rl-carousel__indicators {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.rl-carousel .rl-carousel__indicators .rl-carousel__indicator {
  width: 24px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.rl-carousel .rl-carousel__indicators .rl-carousel__indicator.is-active {
  background-color: #fff;
}
.rl-carousel .rl-carousel__indicators--inside {
  bottom: 20px;
}
.rl-carousel .rl-carousel__indicators--outside {
  bottom: -30px;
}

.rl-carousel:hover .rl-carousel__arrow {
  opacity: 1;
}

.rl-carousel--card {
  padding: 20px 0;
}
.rl-carousel--card .rl-carousel__items {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  transform: none !important;
}
.rl-carousel--card .rl-carousel__items .rl-carousel__item {
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.rl-carousel--card .rl-carousel__items .rl-carousel__item.active {
  transform: scale(1) translateX(0) !important;
  z-index: 10 !important;
  opacity: 1 !important;
}

/*# sourceMappingURL=component.css.map */
