@bagelink/vue 0.0.1256 → 0.0.1260

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist/components/Carousel.vue.d.ts.map +1 -1
  2. package/dist/components/Modal.vue.d.ts +1 -0
  3. package/dist/components/Modal.vue.d.ts.map +1 -1
  4. package/dist/components/form/BagelForm.vue.d.ts.map +1 -1
  5. package/dist/components/form/inputs/DateInput.vue.d.ts +13 -7
  6. package/dist/components/form/inputs/DateInput.vue.d.ts.map +1 -1
  7. package/dist/components/form/inputs/NumberInput.vue.d.ts +1 -0
  8. package/dist/components/form/inputs/NumberInput.vue.d.ts.map +1 -1
  9. package/dist/components/form/inputs/OTP.vue.d.ts.map +1 -1
  10. package/dist/components/form/inputs/SelectInput.vue.d.ts +8 -0
  11. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  12. package/dist/components/form/inputs/TextInput.vue.d.ts +2 -0
  13. package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
  14. package/dist/index.cjs +975 -625
  15. package/dist/index.mjs +975 -625
  16. package/dist/style.css +859 -604
  17. package/dist/utils/BagelFormUtils.d.ts +2 -2
  18. package/dist/utils/BagelFormUtils.d.ts.map +1 -1
  19. package/package.json +1 -1
  20. package/src/components/Carousel.vue +1 -2
  21. package/src/components/Icon/Icon.vue +2 -2
  22. package/src/components/Modal.vue +2 -1
  23. package/src/components/form/BagelForm.vue +15 -13
  24. package/src/components/form/inputs/DateInput.vue +434 -55
  25. package/src/components/form/inputs/NumberInput.vue +10 -2
  26. package/src/components/form/inputs/OTP.vue +2 -3
  27. package/src/components/form/inputs/TextInput.vue +4 -0
  28. package/src/styles/layout.css +121 -0
  29. package/src/styles/mobilLayout.css +121 -0
  30. package/src/styles/text.css +565 -562
  31. package/src/utils/BagelFormUtils.ts +1 -1
package/dist/style.css CHANGED
@@ -899,13 +899,13 @@ display: block;
899
899
  padding: 0;
900
900
  }
901
901
 
902
- .BglCarousel[data-v-d0b0c027] {
902
+ .BglCarousel[data-v-31632a3b] {
903
903
  position: relative;
904
904
  width: 100%;
905
905
  overflow: hidden;
906
906
  touch-action: pan-y pinch-zoom; /* Allow vertical scrolling */
907
907
  }
908
- .bgl-slider[data-v-d0b0c027] {
908
+ .bgl-slider[data-v-31632a3b] {
909
909
  display: flex;
910
910
  position: relative;
911
911
  width: 100%;
@@ -913,31 +913,30 @@ display: block;
913
913
  will-change: transform;
914
914
  transform: translateX(0);
915
915
  gap: 1%;
916
- cursor: grab;
917
916
  transition: none;
918
917
  -webkit-user-select: none;
919
918
  user-select: none;
920
919
  }
921
- .bgl-slider[data-v-d0b0c027] > * {
920
+ .bgl-slider[data-v-31632a3b] > * {
922
921
  flex: 0 0 calc((100% - (var(--item-count) - 1) * 1%) / var(--item-count));
923
922
  width: calc((100% - (var(--item-count) - 1) * 1%) / var(--item-count));
924
923
  min-width: calc((100% - (var(--item-count) - 1) * 1%) / var(--item-count));
925
924
  position: relative;
926
925
  overflow: hidden;
927
926
  }
928
- .bgl-slider.slides-1[data-v-d0b0c027] > * {
927
+ .bgl-slider.slides-1[data-v-31632a3b] > * {
929
928
  flex: 0 0 100%;
930
929
  width: 100%;
931
930
  min-width: 100%;
932
931
  }
933
- .dragging .bgl-slider[data-v-d0b0c027] > * {
932
+ .dragging .bgl-slider[data-v-31632a3b] > * {
934
933
  pointer-events: none;
935
934
  user-select: none;
936
935
  }
937
- .autoHeight[data-v-d0b0c027] {
936
+ .autoHeight[data-v-31632a3b] {
938
937
  transition: height ease 0.7s;
939
938
  }
940
- .dots[data-v-d0b0c027] {
939
+ .dots[data-v-31632a3b] {
941
940
  display: flex;
942
941
  justify-content: center;
943
942
  align-items: center;
@@ -945,7 +944,7 @@ display: block;
945
944
  margin-top: 1rem;
946
945
  gap: 8px;
947
946
  }
948
- .dot[data-v-d0b0c027] {
947
+ .dot[data-v-31632a3b] {
949
948
  height: 10px;
950
949
  width: 10px;
951
950
  border-radius: 50%;
@@ -954,10 +953,10 @@ display: block;
954
953
  transition: opacity 0.3s ease;
955
954
  cursor: pointer;
956
955
  }
957
- .dot[data-v-d0b0c027]:hover {
956
+ .dot[data-v-31632a3b]:hover {
958
957
  opacity: 0.6;
959
958
  }
960
- .dot.current[data-v-d0b0c027] {
959
+ .dot.current[data-v-31632a3b] {
961
960
  opacity: 0.8;
962
961
  }
963
962
 
@@ -1397,19 +1396,71 @@ pre code.hljs{
1397
1396
  .code-editor[data-v-1fbc9b61]:focus {
1398
1397
  outline: none;
1399
1398
  }
1400
- .dp__input_wrap{position:relative;width:100%;box-sizing:unset}.dp__input_wrap:focus{border-color:var(--dp-border-color-hover);outline:none}.dp__input_valid{box-shadow:0 0 var(--dp-border-radius) var(--dp-success-color);border-color:var(--dp-success-color)}.dp__input_valid:hover{border-color:var(--dp-success-color)}.dp__input_invalid{box-shadow:0 0 var(--dp-border-radius) var(--dp-danger-color);border-color:var(--dp-danger-color)}.dp__input_invalid:hover{border-color:var(--dp-danger-color)}.dp__input{background-color:var(--dp-background-color);border-radius:var(--dp-border-radius);font-family:var(--dp-font-family);border:1px solid var(--dp-border-color);outline:none;transition:border-color .2s cubic-bezier(0.645, 0.045, 0.355, 1);width:100%;font-size:var(--dp-font-size);line-height:calc(var(--dp-font-size)*1.5);padding:var(--dp-input-padding);color:var(--dp-text-color);box-sizing:border-box}.dp__input::placeholder{opacity:.7}.dp__input:hover:not(.dp__input_focus){border-color:var(--dp-border-color-hover)}.dp__input_reg{caret-color:rgba(0,0,0,0)}.dp__input_focus{border-color:var(--dp-border-color-focus)}.dp__disabled{background:var(--dp-disabled-color)}.dp__disabled::placeholder{color:var(--dp-disabled-color-text)}.dp__input_icons{display:inline-block;width:var(--dp-font-size);height:var(--dp-font-size);stroke-width:0;font-size:var(--dp-font-size);line-height:calc(var(--dp-font-size)*1.5);padding:6px 12px;color:var(--dp-icon-color);box-sizing:content-box}.dp__input_icon{cursor:pointer;position:absolute;top:50%;inset-inline-start:0;transform:translateY(-50%);color:var(--dp-icon-color)}.dp__clear_icon{position:absolute;top:50%;inset-inline-end:0;transform:translateY(-50%);cursor:pointer;color:var(--dp-icon-color)}.dp__input_icon_pad{padding-inline-start:var(--dp-input-icon-padding)}.dp__menu{background:var(--dp-background-color);border-radius:var(--dp-border-radius);min-width:var(--dp-menu-min-width);font-family:var(--dp-font-family);font-size:var(--dp-font-size);user-select:none;border:1px solid var(--dp-menu-border-color);box-sizing:border-box}.dp__menu::after{box-sizing:border-box}.dp__menu::before{box-sizing:border-box}.dp__menu:focus{border:1px solid var(--dp-menu-border-color);outline:none}.dp--menu-wrapper{position:absolute;z-index:99999}.dp__menu_inner{padding:var(--dp-menu-padding)}.dp--menu--inner-stretched{padding:6px 0}.dp__menu_index{z-index:99999}.dp-menu-loading,.dp__menu_readonly,.dp__menu_disabled{position:absolute;inset:0;z-index:999999}.dp__menu_disabled{background:rgba(255,255,255,.5);cursor:not-allowed}.dp__menu_readonly{background:rgba(0,0,0,0);cursor:default}.dp-menu-loading{background:rgba(255,255,255,.5);cursor:default}.dp--menu-load-container{display:flex;height:100%;width:100%;justify-content:center;align-items:center}.dp--menu-loader{width:48px;height:48px;border:var(--dp-loader);border-bottom-color:rgba(0,0,0,0);border-radius:50%;display:inline-block;box-sizing:border-box;animation:dp-load-rotation 1s linear infinite;position:absolute}@keyframes dp-load-rotation{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.dp__arrow_top{left:var(--dp-arrow-left);top:0;height:12px;width:12px;background-color:var(--dp-background-color);position:absolute;border-inline-end:1px solid var(--dp-menu-border-color);border-top:1px solid var(--dp-menu-border-color);transform:translate(-50%, -50%) rotate(-45deg)}.dp__arrow_bottom{left:var(--dp-arrow-left);bottom:0;height:12px;width:12px;background-color:var(--dp-background-color);position:absolute;border-inline-end:1px solid var(--dp-menu-border-color);border-bottom:1px solid var(--dp-menu-border-color);transform:translate(-50%, 50%) rotate(45deg)}.dp__action_extra{text-align:center;padding:2px 0}.dp--preset-dates{padding:5px;border-inline-end:1px solid var(--dp-border-color)}@media only screen and (width <= 600px){.dp--preset-dates{display:flex;align-self:center;border:none;overflow-x:auto;max-width:calc(var(--dp-menu-width) - var(--dp-action-row-padding)*2)}}.dp--preset-dates-collapsed{display:flex;align-self:center;border:none;overflow-x:auto;max-width:calc(var(--dp-menu-width) - var(--dp-action-row-padding)*2)}.dp__sidebar_left{padding:5px;border-inline-end:1px solid var(--dp-border-color)}.dp__sidebar_right{padding:5px;margin-inline-end:1px solid var(--dp-border-color)}.dp--preset-range{display:block;width:100%;padding:5px;text-align:left;white-space:nowrap;color:var(--dp-text-color);border-radius:var(--dp-border-radius);transition:var(--dp-common-transition)}.dp--preset-range:hover{background-color:var(--dp-hover-color);color:var(--dp-hover-text-color);cursor:pointer}@media only screen and (width <= 600px){.dp--preset-range{border:1px solid var(--dp-border-color);margin:0 3px}.dp--preset-range:first-child{margin-left:0}.dp--preset-range:last-child{margin-right:0}}.dp--preset-range-collapsed{border:1px solid var(--dp-border-color);margin:0 3px}.dp--preset-range-collapsed:first-child{margin-left:0}.dp--preset-range-collapsed:last-child{margin-right:0}.dp__menu_content_wrapper{display:flex}@media only screen and (width <= 600px){.dp__menu_content_wrapper{flex-direction:column-reverse}}.dp--menu-content-wrapper-collapsed{flex-direction:column-reverse}.dp__calendar_header{position:relative;display:flex;justify-content:center;align-items:center;color:var(--dp-text-color);white-space:nowrap;font-weight:bold}.dp__calendar_header_item{text-align:center;flex-grow:1;height:var(--dp-cell-size);padding:var(--dp-cell-padding);width:var(--dp-cell-size);box-sizing:border-box}.dp__calendar_row{display:flex;justify-content:center;align-items:center;margin:var(--dp-row-margin)}.dp__calendar_item{text-align:center;flex-grow:1;box-sizing:border-box;color:var(--dp-text-color)}.dp__calendar{position:relative}.dp__calendar_header_cell{border-bottom:thin solid var(--dp-border-color);padding:var(--dp-calendar-header-cell-padding)}.dp__cell_inner{display:flex;align-items:center;text-align:center;justify-content:center;border-radius:var(--dp-cell-border-radius);height:var(--dp-cell-size);padding:var(--dp-cell-padding);width:var(--dp-cell-size);border:1px solid rgba(0,0,0,0);box-sizing:border-box;position:relative}.dp__cell_inner:hover{transition:all .2s}.dp__cell_auto_range_start,.dp__date_hover_start:hover,.dp__range_start{border-end-end-radius:0;border-start-end-radius:0}.dp__cell_auto_range_end,.dp__date_hover_end:hover,.dp__range_end{border-end-start-radius:0;border-start-start-radius:0}.dp__range_end,.dp__range_start,.dp__active_date{background:var(--dp-primary-color);color:var(--dp-primary-text-color)}.dp__date_hover_end:hover,.dp__date_hover_start:hover,.dp__date_hover:hover{background:var(--dp-hover-color);color:var(--dp-hover-text-color)}.dp__cell_offset{color:var(--dp-secondary-color)}.dp__cell_disabled{color:var(--dp-secondary-color);cursor:not-allowed}.dp__range_between{background:var(--dp-range-between-dates-background-color);color:var(--dp-range-between-dates-text-color);border-radius:0;border:1px solid var(--dp-range-between-border-color)}.dp__range_between_week{background:var(--dp-primary-color);color:var(--dp-primary-text-color);border-radius:0;border-top:1px solid var(--dp-primary-color);border-bottom:1px solid var(--dp-primary-color)}.dp__today{border:1px solid var(--dp-primary-color)}.dp__week_num{color:var(--dp-secondary-color);text-align:center}.dp__cell_auto_range{border-radius:0;border-top:1px dashed var(--dp-primary-color);border-bottom:1px dashed var(--dp-primary-color)}.dp__cell_auto_range_start{border-start-start-radius:var(--dp-cell-border-radius);border-end-start-radius:var(--dp-cell-border-radius);border-inline-start:1px dashed var(--dp-primary-color);border-top:1px dashed var(--dp-primary-color);border-bottom:1px dashed var(--dp-primary-color)}.dp__cell_auto_range_end{border-start-end-radius:var(--dp-cell-border-radius);border-end-end-radius:var(--dp-cell-border-radius);border-top:1px dashed var(--dp-primary-color);border-bottom:1px dashed var(--dp-primary-color);border-inline-end:1px dashed var(--dp-primary-color)}.dp__calendar_header_separator{width:100%;height:1px;background:var(--dp-border-color)}.dp__calendar_next{margin-inline-start:var(--dp-multi-calendars-spacing)}.dp__marker_line,.dp__marker_dot{height:5px;background-color:var(--dp-marker-color);position:absolute;bottom:0}.dp__marker_dot{width:5px;border-radius:50%;left:50%;transform:translateX(-50%)}.dp__marker_line{width:100%;left:0}.dp__marker_tooltip{position:absolute;border-radius:var(--dp-border-radius);background-color:var(--dp-tooltip-color);padding:5px;border:1px solid var(--dp-border-color);z-index:99999;box-sizing:border-box;cursor:default}.dp__tooltip_content{white-space:nowrap}.dp__tooltip_text{display:flex;align-items:center;flex-flow:row nowrap;color:var(--dp-text-color)}.dp__tooltip_mark{height:5px;width:5px;border-radius:50%;background-color:var(--dp-text-color);color:var(--dp-text-color);margin-inline-end:5px}.dp__arrow_bottom_tp{bottom:0;height:8px;width:8px;background-color:var(--dp-tooltip-color);position:absolute;border-inline-end:1px solid var(--dp-border-color);border-bottom:1px solid var(--dp-border-color);transform:translate(-50%, 50%) rotate(45deg)}.dp__instance_calendar{position:relative;width:100%}@media only screen and (width <= 600px){.dp__flex_display{flex-direction:column}}.dp--flex-display-collapsed{flex-direction:column}.dp__cell_highlight{background-color:var(--dp-highlight-color)}.dp__month_year_row{display:flex;align-items:center;height:var(--dp-month-year-row-height);color:var(--dp-text-color);box-sizing:border-box}.dp__inner_nav{display:flex;align-items:center;justify-content:center;cursor:pointer;height:var(--dp-month-year-row-button-size);width:var(--dp-month-year-row-button-size);color:var(--dp-icon-color);text-align:center;border-radius:50%}.dp__inner_nav svg{height:var(--dp-button-icon-height);width:var(--dp-button-icon-height)}.dp__inner_nav:hover{background:var(--dp-hover-color);color:var(--dp-hover-icon-color)}[dir=rtl] .dp__inner_nav{transform:rotate(180deg)}.dp__inner_nav_disabled:hover,.dp__inner_nav_disabled{background:var(--dp-disabled-color);color:var(--dp-disabled-color-text);cursor:not-allowed}.dp--year-select,.dp__month_year_select{text-align:center;cursor:pointer;height:var(--dp-month-year-row-height);display:flex;align-items:center;justify-content:center;border-radius:var(--dp-border-radius);box-sizing:border-box;color:var(--dp-text-color)}.dp--year-select:hover,.dp__month_year_select:hover{background:var(--dp-hover-color);color:var(--dp-hover-text-color);transition:var(--dp-common-transition)}.dp__month_year_select{width:50%}.dp--year-select{width:100%}.dp__month_year_wrap{display:flex;flex-direction:row;width:100%}.dp__year_disable_select{justify-content:space-around}.dp--header-wrap{display:flex;width:100%;flex-direction:column}.dp__overlay{width:100%;background:var(--dp-background-color);transition:opacity 1s ease-out;z-index:99999;font-family:var(--dp-font-family);color:var(--dp-text-color);box-sizing:border-box}.dp--overlay-absolute{position:absolute;height:100%;top:0;left:0}.dp--overlay-relative{position:relative}.dp__overlay_container::-webkit-scrollbar-track{box-shadow:var(--dp-scroll-bar-background);background-color:var(--dp-scroll-bar-background)}.dp__overlay_container::-webkit-scrollbar{width:5px;background-color:var(--dp-scroll-bar-background)}.dp__overlay_container::-webkit-scrollbar-thumb{background-color:var(--dp-scroll-bar-color);border-radius:10px}.dp__overlay:focus{border:none;outline:none}.dp__container_flex{display:flex}.dp__container_block{display:block}.dp__overlay_container{flex-direction:column;overflow-y:auto;height:var(--dp-overlay-height)}.dp__time_picker_overlay_container{height:100%}.dp__overlay_row{padding:0;box-sizing:border-box;display:flex;margin-inline:auto auto;flex-wrap:wrap;max-width:100%;width:100%;align-items:center}.dp__flex_row{flex:1}.dp__overlay_col{box-sizing:border-box;width:33%;padding:var(--dp-overlay-col-padding);white-space:nowrap}.dp__overlay_cell_pad{padding:var(--dp-common-padding) 0}.dp__overlay_cell_active{cursor:pointer;border-radius:var(--dp-border-radius);text-align:center;background:var(--dp-primary-color);color:var(--dp-primary-text-color)}.dp__overlay_cell{cursor:pointer;border-radius:var(--dp-border-radius);text-align:center}.dp__overlay_cell:hover{background:var(--dp-hover-color);color:var(--dp-hover-text-color);transition:var(--dp-common-transition)}.dp__cell_in_between{background:var(--dp-hover-color);color:var(--dp-hover-text-color)}.dp__over_action_scroll{right:5px;box-sizing:border-box}.dp__overlay_cell_disabled{cursor:not-allowed;background:var(--dp-disabled-color)}.dp__overlay_cell_disabled:hover{background:var(--dp-disabled-color)}.dp__overlay_cell_active_disabled{cursor:not-allowed;background:var(--dp-primary-disabled-color)}.dp__overlay_cell_active_disabled:hover{background:var(--dp-primary-disabled-color)}.dp__btn,.dp--qr-btn,.dp--time-invalid,.dp--time-overlay-btn{border:none;font:inherit;transition:var(--dp-common-transition);line-height:normal}.dp--year-mode-picker{display:flex;width:100%;align-items:center;justify-content:space-between;height:var(--dp-cell-size)}.dp--tp-wrap{max-width:var(--dp-menu-min-width)}.dp__time_input{width:100%;display:flex;align-items:center;justify-content:center;user-select:none;font-family:var(--dp-font-family);color:var(--dp-text-color)}.dp__time_col_reg_block{padding:0 20px}.dp__time_col_reg_inline{padding:0 10px}.dp__time_col_reg_with_button{padding:0 15px}.dp__time_col_sec{padding:0 10px}.dp__time_col_sec_with_button{padding:0 5px}.dp__time_col{text-align:center;display:flex;align-items:center;justify-content:center;flex-direction:column}.dp__time_col_block{font-size:var(--dp-time-font-size)}.dp__time_display_block{padding:0 3px}.dp__time_display_inline{padding:5px}.dp__time_picker_inline_container{display:flex;width:100%;justify-content:center}.dp__inc_dec_button{padding:5px;margin:0;height:var(--dp-time-inc-dec-button-size);width:var(--dp-time-inc-dec-button-size);display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:50%;color:var(--dp-icon-color);box-sizing:border-box}.dp__inc_dec_button svg{height:var(--dp-time-inc-dec-button-size);width:var(--dp-time-inc-dec-button-size)}.dp__inc_dec_button:hover{background:var(--dp-hover-color);color:var(--dp-primary-color)}.dp__time_display{cursor:pointer;color:var(--dp-text-color);border-radius:var(--dp-border-radius);display:flex;align-items:center;justify-content:center}.dp__time_display:hover:enabled{background:var(--dp-hover-color);color:var(--dp-hover-text-color)}.dp__inc_dec_button_inline{width:100%;padding:0;height:8px;cursor:pointer;display:flex;align-items:center}.dp__inc_dec_button_disabled,.dp__inc_dec_button_disabled:hover{background:var(--dp-disabled-color);color:var(--dp-disabled-color-text);cursor:not-allowed}.dp__pm_am_button{background:var(--dp-primary-color);color:var(--dp-primary-text-color);border:none;padding:var(--dp-common-padding);border-radius:var(--dp-border-radius);cursor:pointer}.dp__tp_inline_btn_bar{width:100%;height:4px;background-color:var(--dp-secondary-color);transition:var(--dp-common-transition);border-collapse:collapse}.dp__tp_inline_btn_top:hover .dp__tp_btn_in_r{background-color:var(--dp-primary-color);transform:rotate(12deg) scale(1.15) translateY(-2px)}.dp__tp_inline_btn_top:hover .dp__tp_btn_in_l{background-color:var(--dp-primary-color);transform:rotate(-12deg) scale(1.15) translateY(-2px)}.dp__tp_inline_btn_bottom:hover .dp__tp_btn_in_r{background-color:var(--dp-primary-color);transform:rotate(-12deg) scale(1.15) translateY(-2px)}.dp__tp_inline_btn_bottom:hover .dp__tp_btn_in_l{background-color:var(--dp-primary-color);transform:rotate(12deg) scale(1.15) translateY(-2px)}.dp--time-overlay-btn{background:none}.dp--time-invalid{background-color:var(--dp-disabled-color)}.dp__action_row{display:flex;align-items:center;width:100%;padding:var(--dp-action-row-padding);box-sizing:border-box;color:var(--dp-text-color);flex-flow:row nowrap}.dp__action_row svg{height:var(--dp-button-icon-height);width:auto}.dp__selection_preview{display:block;color:var(--dp-text-color);font-size:var(--dp-preview-font-size);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dp__action_buttons{display:flex;flex:0;white-space:nowrap;align-items:center;justify-content:flex-end;margin-inline-start:auto}.dp__action_button{display:inline-flex;align-items:center;background:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);padding:var(--dp-action-buttons-padding);line-height:var(--dp-action-button-height);margin-inline-start:3px;height:var(--dp-action-button-height);cursor:pointer;border-radius:var(--dp-border-radius);font-size:var(--dp-preview-font-size);font-family:var(--dp-font-family)}.dp__action_cancel{color:var(--dp-text-color);border:1px solid var(--dp-border-color)}.dp__action_cancel:hover{border-color:var(--dp-primary-color);transition:var(--dp-action-row-transtion)}.dp__action_buttons .dp__action_select{background:var(--dp-primary-color);color:var(--dp-primary-text-color)}.dp__action_buttons .dp__action_select:hover{background:var(--dp-primary-color);transition:var(--dp-action-row-transtion)}.dp__action_buttons .dp__action_select:disabled{background:var(--dp-primary-disabled-color);cursor:not-allowed}.dp-quarter-picker-wrap{display:flex;flex-direction:column;height:100%;min-width:var(--dp-menu-min-width)}.dp--qr-btn-disabled{cursor:not-allowed;background:var(--dp-disabled-color)}.dp--qr-btn-disabled:hover{background:var(--dp-disabled-color)}.dp--qr-btn{width:100%;padding:var(--dp-common-padding)}.dp--qr-btn:not(.dp--highlighted,.dp--qr-btn-active,.dp--qr-btn-disabled,.dp--qr-btn-between){background:none}.dp--qr-btn:hover:not(.dp--qr-btn-active,.dp--qr-btn-disabled){background:var(--dp-hover-color);color:var(--dp-hover-text-color);transition:var(--dp-common-transition)}.dp--quarter-items{display:flex;flex-direction:column;flex:1;width:100%;height:100%;justify-content:space-evenly}.dp--qr-btn-active{background:var(--dp-primary-color);color:var(--dp-primary-text-color)}.dp--qr-btn-between{background:var(--dp-hover-color);color:var(--dp-hover-text-color)}.dp__btn,.dp--time-overlay-btn,.dp--time-invalid,.dp--qr-btn{border:none;font:inherit;transition:var(--dp-common-transition);line-height:normal}.dp--year-mode-picker{display:flex;width:100%;align-items:center;justify-content:space-between;height:var(--dp-cell-size)}:root{--dp-common-transition: all 0.1s ease-in;--dp-menu-padding: 6px 8px;--dp-animation-duration: 0.1s;--dp-menu-appear-transition-timing: cubic-bezier(.4, 0, 1, 1);--dp-transition-timing: ease-out;--dp-action-row-transtion: all 0.2s ease-in;--dp-font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;--dp-border-radius: 4px;--dp-cell-border-radius: 4px;--dp-transition-length: 22px;--dp-transition-timing-general: 0.1s;--dp-button-height: 35px;--dp-month-year-row-height: 35px;--dp-month-year-row-button-size: 25px;--dp-button-icon-height: 20px;--dp-calendar-wrap-padding: 0 5px;--dp-cell-size: 35px;--dp-cell-padding: 5px;--dp-common-padding: 10px;--dp-input-icon-padding: 35px;--dp-input-padding: 6px 30px 6px 12px;--dp-menu-min-width: 260px;--dp-action-buttons-padding: 1px 6px;--dp-row-margin: 5px 0;--dp-calendar-header-cell-padding: 0.5rem;--dp-multi-calendars-spacing: 10px;--dp-overlay-col-padding: 3px;--dp-time-inc-dec-button-size: 32px;--dp-font-size: 1rem;--dp-preview-font-size: 0.8rem;--dp-time-font-size: 2rem;--dp-action-button-height: 22px;--dp-action-row-padding: 8px}.dp__theme_dark{--dp-background-color: #212121;--dp-text-color: #fff;--dp-hover-color: #484848;--dp-hover-text-color: #fff;--dp-hover-icon-color: #959595;--dp-primary-color: #005cb2;--dp-primary-disabled-color: #61a8ea;--dp-primary-text-color: #fff;--dp-secondary-color: #a9a9a9;--dp-border-color: #2d2d2d;--dp-menu-border-color: #2d2d2d;--dp-border-color-hover: #aaaeb7;--dp-border-color-focus: #aaaeb7;--dp-disabled-color: #737373;--dp-disabled-color-text: #d0d0d0;--dp-scroll-bar-background: #212121;--dp-scroll-bar-color: #484848;--dp-success-color: #00701a;--dp-success-color-disabled: #428f59;--dp-icon-color: #959595;--dp-danger-color: #e53935;--dp-marker-color: #e53935;--dp-tooltip-color: #3e3e3e;--dp-highlight-color: rgb(0 92 178 / 20%);--dp-range-between-dates-background-color: var(--dp-hover-color, #484848);--dp-range-between-dates-text-color: var(--dp-hover-text-color, #fff);--dp-range-between-border-color: var(--dp-hover-color, #fff);--dp-loader: 5px solid #005cb2}.dp__theme_light{--dp-background-color: #fff;--dp-text-color: #212121;--dp-hover-color: #f3f3f3;--dp-hover-text-color: #212121;--dp-hover-icon-color: #959595;--dp-primary-color: #1976d2;--dp-primary-disabled-color: #6bacea;--dp-primary-text-color: #f8f5f5;--dp-secondary-color: #c0c4cc;--dp-border-color: #ddd;--dp-menu-border-color: #ddd;--dp-border-color-hover: #aaaeb7;--dp-border-color-focus: #aaaeb7;--dp-disabled-color: #f6f6f6;--dp-scroll-bar-background: #f3f3f3;--dp-scroll-bar-color: #959595;--dp-success-color: #76d275;--dp-success-color-disabled: #a3d9b1;--dp-icon-color: #959595;--dp-danger-color: #ff6f60;--dp-marker-color: #ff6f60;--dp-tooltip-color: #fafafa;--dp-disabled-color-text: #8e8e8e;--dp-highlight-color: rgb(25 118 210 / 10%);--dp-range-between-dates-background-color: var(--dp-hover-color, #f3f3f3);--dp-range-between-dates-text-color: var(--dp-hover-text-color, #212121);--dp-range-between-border-color: var(--dp-hover-color, #f3f3f3);--dp-loader: 5px solid #1976d2}.dp__flex{display:flex;align-items:center}.dp__btn{background:none}.dp__main{font-family:var(--dp-font-family);user-select:none;box-sizing:border-box;position:relative;width:100%}.dp__pointer{cursor:pointer}.dp__icon{stroke:currentcolor;fill:currentcolor}.dp__button{width:100%;text-align:center;color:var(--dp-icon-color);cursor:pointer;display:flex;align-items:center;place-content:center center;padding:var(--dp-common-padding);box-sizing:border-box;height:var(--dp-button-height)}.dp__button.dp__overlay_action{position:absolute;bottom:0}.dp__button:hover{background:var(--dp-hover-color);color:var(--dp-hover-icon-color)}.dp__button svg{height:var(--dp-button-icon-height);width:auto}.dp__button_bottom{border-bottom-left-radius:var(--dp-border-radius);border-bottom-right-radius:var(--dp-border-radius)}.dp__flex_display{display:flex}.dp__flex_display_with_input{flex-direction:column;align-items:flex-start}.dp__relative{position:relative}.calendar-next-enter-active,.calendar-next-leave-active,.calendar-prev-enter-active,.calendar-prev-leave-active{transition:all var(--dp-transition-timing-general) ease-out}.calendar-next-enter-from{opacity:0;transform:translateX(var(--dp-transition-length))}.calendar-next-leave-to{opacity:0;transform:translateX(calc(var(--dp-transition-length) * -1))}.calendar-prev-enter-from{opacity:0;transform:translateX(calc(var(--dp-transition-length) * -1))}.calendar-prev-leave-to{opacity:0;transform:translateX(var(--dp-transition-length))}.dp-menu-appear-bottom-enter-active,.dp-menu-appear-bottom-leave-active,.dp-menu-appear-top-enter-active,.dp-menu-appear-top-leave-active,.dp-slide-up-enter-active,.dp-slide-up-leave-active,.dp-slide-down-enter-active,.dp-slide-down-leave-active{transition:all var(--dp-animation-duration) var(--dp-transition-timing)}.dp-menu-appear-top-enter-from,.dp-menu-appear-top-leave-to,.dp-slide-down-leave-to,.dp-slide-up-enter-from{opacity:0;transform:translateY(var(--dp-transition-length))}.dp-menu-appear-bottom-enter-from,.dp-menu-appear-bottom-leave-to,.dp-slide-down-enter-from,.dp-slide-up-leave-to{opacity:0;transform:translateY(calc(var(--dp-transition-length) * -1))}.dp--arrow-btn-nav{transition:var(--dp-common-transition)}.dp--highlighted{background-color:var(--dp-highlight-color)}/*# sourceMappingURL=main.css.map */
1401
1399
 
1402
- .dp__input_wrap input {
1403
- padding-inline-start: 2rem !important;
1400
+ .calendar-container[data-v-a2f98d6e] {
1401
+ max-width: 90vw;
1404
1402
  }
1405
- .dp__calendar_row>div:last-child {
1406
- pointer-events: auto !important;
1403
+ .calendar-section[data-v-a2f98d6e] {
1404
+ min-width: 280px;
1407
1405
  }
1408
- .dp__time_input {
1409
- direction: ltr;
1406
+ .calendar-grid[data-v-a2f98d6e] {
1407
+ grid-template-columns: repeat(7, 1fr);
1408
+ }
1409
+ .month-grid[data-v-a2f98d6e] {
1410
+ grid-template-columns: repeat(3, 1fr);
1411
+ grid-template-rows: repeat(4, 1fr);
1412
+ }
1413
+ .year-grid[data-v-a2f98d6e] {
1414
+ grid-template-columns: repeat(3, 1fr);
1415
+ grid-template-rows: repeat(7, 1fr);
1416
+ }
1417
+ .month-item[data-v-a2f98d6e],
1418
+ .year-item[data-v-a2f98d6e] {
1419
+ background: none;
1420
+ color: var(--bgl-text-color);
1421
+ }
1422
+ .month-item[data-v-a2f98d6e]:hover:not(.disabled),
1423
+ .year-item[data-v-a2f98d6e]:hover:not(.disabled) {
1424
+ background: var(--bgl-box-bg);
1425
+ filter: var(--bgl-hover-filter);
1426
+ }
1427
+ .month-item[data-v-a2f98d6e]:active:not(.disabled),
1428
+ .year-item[data-v-a2f98d6e]:active:not(.disabled) {
1429
+ background: var(--bgl-box-bg);
1430
+ filter: var(--bgl-active-filter);
1431
+ }
1432
+ .month-item.selected[data-v-a2f98d6e],
1433
+ .year-item.selected[data-v-a2f98d6e] {
1434
+ background-color: var(--bgl-primary);
1435
+ color: white;
1436
+ }
1437
+ .month-item.disabled[data-v-a2f98d6e],
1438
+ .year-item.disabled[data-v-a2f98d6e] {
1439
+ opacity: 0.6;
1440
+ filter: grayscale(0.3);
1441
+ }
1442
+ .day[data-v-a2f98d6e] {
1443
+ border: none;
1444
+ background: none;
1445
+ color: var(--bgl-text-color);
1446
+ }
1447
+ .day[data-v-a2f98d6e]:hover:not(.disabled) {
1448
+ background-color: var(--input-bg);
1410
1449
  }
1411
- .ltrDateInput input {
1412
- direction: ltr;
1450
+ .day.selected[data-v-a2f98d6e] {
1451
+ background-color: var(--bgl-primary);
1452
+ color: var(--bgl-white);
1453
+ }
1454
+ .day.today[data-v-a2f98d6e]:not(.selected) {
1455
+ border: 1px solid var(--bgl-primary);
1456
+ }
1457
+ .day.disabled[data-v-a2f98d6e] {
1458
+ opacity: 0.6;
1459
+ filter: grayscale(0.3);
1460
+ cursor: not-allowed;
1461
+ }
1462
+ .day.not-in-month[data-v-a2f98d6e] {
1463
+ opacity: 0.4;
1413
1464
  }
1414
1465
 
1415
1466
  .calendar-container[data-v-c6c8cc7b] {
@@ -1477,6 +1528,7 @@ pre code.hljs{
1477
1528
  .day.not-in-month[data-v-c6c8cc7b] {
1478
1529
  opacity: 0.4;
1479
1530
  }
1531
+ .dp__input_wrap{position:relative;width:100%;box-sizing:unset}.dp__input_wrap:focus{border-color:var(--dp-border-color-hover);outline:none}.dp__input_valid{box-shadow:0 0 var(--dp-border-radius) var(--dp-success-color);border-color:var(--dp-success-color)}.dp__input_valid:hover{border-color:var(--dp-success-color)}.dp__input_invalid{box-shadow:0 0 var(--dp-border-radius) var(--dp-danger-color);border-color:var(--dp-danger-color)}.dp__input_invalid:hover{border-color:var(--dp-danger-color)}.dp__input{background-color:var(--dp-background-color);border-radius:var(--dp-border-radius);font-family:var(--dp-font-family);border:1px solid var(--dp-border-color);outline:none;transition:border-color .2s cubic-bezier(0.645, 0.045, 0.355, 1);width:100%;font-size:var(--dp-font-size);line-height:calc(var(--dp-font-size)*1.5);padding:var(--dp-input-padding);color:var(--dp-text-color);box-sizing:border-box}.dp__input::placeholder{opacity:.7}.dp__input:hover:not(.dp__input_focus){border-color:var(--dp-border-color-hover)}.dp__input_reg{caret-color:rgba(0,0,0,0)}.dp__input_focus{border-color:var(--dp-border-color-focus)}.dp__disabled{background:var(--dp-disabled-color)}.dp__disabled::placeholder{color:var(--dp-disabled-color-text)}.dp__input_icons{display:inline-block;width:var(--dp-font-size);height:var(--dp-font-size);stroke-width:0;font-size:var(--dp-font-size);line-height:calc(var(--dp-font-size)*1.5);padding:6px 12px;color:var(--dp-icon-color);box-sizing:content-box}.dp__input_icon{cursor:pointer;position:absolute;top:50%;inset-inline-start:0;transform:translateY(-50%);color:var(--dp-icon-color)}.dp__clear_icon{position:absolute;top:50%;inset-inline-end:0;transform:translateY(-50%);cursor:pointer;color:var(--dp-icon-color)}.dp__input_icon_pad{padding-inline-start:var(--dp-input-icon-padding)}.dp__menu{background:var(--dp-background-color);border-radius:var(--dp-border-radius);min-width:var(--dp-menu-min-width);font-family:var(--dp-font-family);font-size:var(--dp-font-size);user-select:none;border:1px solid var(--dp-menu-border-color);box-sizing:border-box}.dp__menu::after{box-sizing:border-box}.dp__menu::before{box-sizing:border-box}.dp__menu:focus{border:1px solid var(--dp-menu-border-color);outline:none}.dp--menu-wrapper{position:absolute;z-index:99999}.dp__menu_inner{padding:var(--dp-menu-padding)}.dp--menu--inner-stretched{padding:6px 0}.dp__menu_index{z-index:99999}.dp-menu-loading,.dp__menu_readonly,.dp__menu_disabled{position:absolute;inset:0;z-index:999999}.dp__menu_disabled{background:rgba(255,255,255,.5);cursor:not-allowed}.dp__menu_readonly{background:rgba(0,0,0,0);cursor:default}.dp-menu-loading{background:rgba(255,255,255,.5);cursor:default}.dp--menu-load-container{display:flex;height:100%;width:100%;justify-content:center;align-items:center}.dp--menu-loader{width:48px;height:48px;border:var(--dp-loader);border-bottom-color:rgba(0,0,0,0);border-radius:50%;display:inline-block;box-sizing:border-box;animation:dp-load-rotation 1s linear infinite;position:absolute}@keyframes dp-load-rotation{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.dp__arrow_top{left:var(--dp-arrow-left);top:0;height:12px;width:12px;background-color:var(--dp-background-color);position:absolute;border-inline-end:1px solid var(--dp-menu-border-color);border-top:1px solid var(--dp-menu-border-color);transform:translate(-50%, -50%) rotate(-45deg)}.dp__arrow_bottom{left:var(--dp-arrow-left);bottom:0;height:12px;width:12px;background-color:var(--dp-background-color);position:absolute;border-inline-end:1px solid var(--dp-menu-border-color);border-bottom:1px solid var(--dp-menu-border-color);transform:translate(-50%, 50%) rotate(45deg)}.dp__action_extra{text-align:center;padding:2px 0}.dp--preset-dates{padding:5px;border-inline-end:1px solid var(--dp-border-color)}@media only screen and (width <= 600px){.dp--preset-dates{display:flex;align-self:center;border:none;overflow-x:auto;max-width:calc(var(--dp-menu-width) - var(--dp-action-row-padding)*2)}}.dp--preset-dates-collapsed{display:flex;align-self:center;border:none;overflow-x:auto;max-width:calc(var(--dp-menu-width) - var(--dp-action-row-padding)*2)}.dp__sidebar_left{padding:5px;border-inline-end:1px solid var(--dp-border-color)}.dp__sidebar_right{padding:5px;margin-inline-end:1px solid var(--dp-border-color)}.dp--preset-range{display:block;width:100%;padding:5px;text-align:left;white-space:nowrap;color:var(--dp-text-color);border-radius:var(--dp-border-radius);transition:var(--dp-common-transition)}.dp--preset-range:hover{background-color:var(--dp-hover-color);color:var(--dp-hover-text-color);cursor:pointer}@media only screen and (width <= 600px){.dp--preset-range{border:1px solid var(--dp-border-color);margin:0 3px}.dp--preset-range:first-child{margin-left:0}.dp--preset-range:last-child{margin-right:0}}.dp--preset-range-collapsed{border:1px solid var(--dp-border-color);margin:0 3px}.dp--preset-range-collapsed:first-child{margin-left:0}.dp--preset-range-collapsed:last-child{margin-right:0}.dp__menu_content_wrapper{display:flex}@media only screen and (width <= 600px){.dp__menu_content_wrapper{flex-direction:column-reverse}}.dp--menu-content-wrapper-collapsed{flex-direction:column-reverse}.dp__calendar_header{position:relative;display:flex;justify-content:center;align-items:center;color:var(--dp-text-color);white-space:nowrap;font-weight:bold}.dp__calendar_header_item{text-align:center;flex-grow:1;height:var(--dp-cell-size);padding:var(--dp-cell-padding);width:var(--dp-cell-size);box-sizing:border-box}.dp__calendar_row{display:flex;justify-content:center;align-items:center;margin:var(--dp-row-margin)}.dp__calendar_item{text-align:center;flex-grow:1;box-sizing:border-box;color:var(--dp-text-color)}.dp__calendar{position:relative}.dp__calendar_header_cell{border-bottom:thin solid var(--dp-border-color);padding:var(--dp-calendar-header-cell-padding)}.dp__cell_inner{display:flex;align-items:center;text-align:center;justify-content:center;border-radius:var(--dp-cell-border-radius);height:var(--dp-cell-size);padding:var(--dp-cell-padding);width:var(--dp-cell-size);border:1px solid rgba(0,0,0,0);box-sizing:border-box;position:relative}.dp__cell_inner:hover{transition:all .2s}.dp__cell_auto_range_start,.dp__date_hover_start:hover,.dp__range_start{border-end-end-radius:0;border-start-end-radius:0}.dp__cell_auto_range_end,.dp__date_hover_end:hover,.dp__range_end{border-end-start-radius:0;border-start-start-radius:0}.dp__range_end,.dp__range_start,.dp__active_date{background:var(--dp-primary-color);color:var(--dp-primary-text-color)}.dp__date_hover_end:hover,.dp__date_hover_start:hover,.dp__date_hover:hover{background:var(--dp-hover-color);color:var(--dp-hover-text-color)}.dp__cell_offset{color:var(--dp-secondary-color)}.dp__cell_disabled{color:var(--dp-secondary-color);cursor:not-allowed}.dp__range_between{background:var(--dp-range-between-dates-background-color);color:var(--dp-range-between-dates-text-color);border-radius:0;border:1px solid var(--dp-range-between-border-color)}.dp__range_between_week{background:var(--dp-primary-color);color:var(--dp-primary-text-color);border-radius:0;border-top:1px solid var(--dp-primary-color);border-bottom:1px solid var(--dp-primary-color)}.dp__today{border:1px solid var(--dp-primary-color)}.dp__week_num{color:var(--dp-secondary-color);text-align:center}.dp__cell_auto_range{border-radius:0;border-top:1px dashed var(--dp-primary-color);border-bottom:1px dashed var(--dp-primary-color)}.dp__cell_auto_range_start{border-start-start-radius:var(--dp-cell-border-radius);border-end-start-radius:var(--dp-cell-border-radius);border-inline-start:1px dashed var(--dp-primary-color);border-top:1px dashed var(--dp-primary-color);border-bottom:1px dashed var(--dp-primary-color)}.dp__cell_auto_range_end{border-start-end-radius:var(--dp-cell-border-radius);border-end-end-radius:var(--dp-cell-border-radius);border-top:1px dashed var(--dp-primary-color);border-bottom:1px dashed var(--dp-primary-color);border-inline-end:1px dashed var(--dp-primary-color)}.dp__calendar_header_separator{width:100%;height:1px;background:var(--dp-border-color)}.dp__calendar_next{margin-inline-start:var(--dp-multi-calendars-spacing)}.dp__marker_line,.dp__marker_dot{height:5px;background-color:var(--dp-marker-color);position:absolute;bottom:0}.dp__marker_dot{width:5px;border-radius:50%;left:50%;transform:translateX(-50%)}.dp__marker_line{width:100%;left:0}.dp__marker_tooltip{position:absolute;border-radius:var(--dp-border-radius);background-color:var(--dp-tooltip-color);padding:5px;border:1px solid var(--dp-border-color);z-index:99999;box-sizing:border-box;cursor:default}.dp__tooltip_content{white-space:nowrap}.dp__tooltip_text{display:flex;align-items:center;flex-flow:row nowrap;color:var(--dp-text-color)}.dp__tooltip_mark{height:5px;width:5px;border-radius:50%;background-color:var(--dp-text-color);color:var(--dp-text-color);margin-inline-end:5px}.dp__arrow_bottom_tp{bottom:0;height:8px;width:8px;background-color:var(--dp-tooltip-color);position:absolute;border-inline-end:1px solid var(--dp-border-color);border-bottom:1px solid var(--dp-border-color);transform:translate(-50%, 50%) rotate(45deg)}.dp__instance_calendar{position:relative;width:100%}@media only screen and (width <= 600px){.dp__flex_display{flex-direction:column}}.dp--flex-display-collapsed{flex-direction:column}.dp__cell_highlight{background-color:var(--dp-highlight-color)}.dp__month_year_row{display:flex;align-items:center;height:var(--dp-month-year-row-height);color:var(--dp-text-color);box-sizing:border-box}.dp__inner_nav{display:flex;align-items:center;justify-content:center;cursor:pointer;height:var(--dp-month-year-row-button-size);width:var(--dp-month-year-row-button-size);color:var(--dp-icon-color);text-align:center;border-radius:50%}.dp__inner_nav svg{height:var(--dp-button-icon-height);width:var(--dp-button-icon-height)}.dp__inner_nav:hover{background:var(--dp-hover-color);color:var(--dp-hover-icon-color)}[dir=rtl] .dp__inner_nav{transform:rotate(180deg)}.dp__inner_nav_disabled:hover,.dp__inner_nav_disabled{background:var(--dp-disabled-color);color:var(--dp-disabled-color-text);cursor:not-allowed}.dp--year-select,.dp__month_year_select{text-align:center;cursor:pointer;height:var(--dp-month-year-row-height);display:flex;align-items:center;justify-content:center;border-radius:var(--dp-border-radius);box-sizing:border-box;color:var(--dp-text-color)}.dp--year-select:hover,.dp__month_year_select:hover{background:var(--dp-hover-color);color:var(--dp-hover-text-color);transition:var(--dp-common-transition)}.dp__month_year_select{width:50%}.dp--year-select{width:100%}.dp__month_year_wrap{display:flex;flex-direction:row;width:100%}.dp__year_disable_select{justify-content:space-around}.dp--header-wrap{display:flex;width:100%;flex-direction:column}.dp__overlay{width:100%;background:var(--dp-background-color);transition:opacity 1s ease-out;z-index:99999;font-family:var(--dp-font-family);color:var(--dp-text-color);box-sizing:border-box}.dp--overlay-absolute{position:absolute;height:100%;top:0;left:0}.dp--overlay-relative{position:relative}.dp__overlay_container::-webkit-scrollbar-track{box-shadow:var(--dp-scroll-bar-background);background-color:var(--dp-scroll-bar-background)}.dp__overlay_container::-webkit-scrollbar{width:5px;background-color:var(--dp-scroll-bar-background)}.dp__overlay_container::-webkit-scrollbar-thumb{background-color:var(--dp-scroll-bar-color);border-radius:10px}.dp__overlay:focus{border:none;outline:none}.dp__container_flex{display:flex}.dp__container_block{display:block}.dp__overlay_container{flex-direction:column;overflow-y:auto;height:var(--dp-overlay-height)}.dp__time_picker_overlay_container{height:100%}.dp__overlay_row{padding:0;box-sizing:border-box;display:flex;margin-inline:auto auto;flex-wrap:wrap;max-width:100%;width:100%;align-items:center}.dp__flex_row{flex:1}.dp__overlay_col{box-sizing:border-box;width:33%;padding:var(--dp-overlay-col-padding);white-space:nowrap}.dp__overlay_cell_pad{padding:var(--dp-common-padding) 0}.dp__overlay_cell_active{cursor:pointer;border-radius:var(--dp-border-radius);text-align:center;background:var(--dp-primary-color);color:var(--dp-primary-text-color)}.dp__overlay_cell{cursor:pointer;border-radius:var(--dp-border-radius);text-align:center}.dp__overlay_cell:hover{background:var(--dp-hover-color);color:var(--dp-hover-text-color);transition:var(--dp-common-transition)}.dp__cell_in_between{background:var(--dp-hover-color);color:var(--dp-hover-text-color)}.dp__over_action_scroll{right:5px;box-sizing:border-box}.dp__overlay_cell_disabled{cursor:not-allowed;background:var(--dp-disabled-color)}.dp__overlay_cell_disabled:hover{background:var(--dp-disabled-color)}.dp__overlay_cell_active_disabled{cursor:not-allowed;background:var(--dp-primary-disabled-color)}.dp__overlay_cell_active_disabled:hover{background:var(--dp-primary-disabled-color)}.dp__btn,.dp--qr-btn,.dp--time-invalid,.dp--time-overlay-btn{border:none;font:inherit;transition:var(--dp-common-transition);line-height:normal}.dp--year-mode-picker{display:flex;width:100%;align-items:center;justify-content:space-between;height:var(--dp-cell-size)}.dp--tp-wrap{max-width:var(--dp-menu-min-width)}.dp__time_input{width:100%;display:flex;align-items:center;justify-content:center;user-select:none;font-family:var(--dp-font-family);color:var(--dp-text-color)}.dp__time_col_reg_block{padding:0 20px}.dp__time_col_reg_inline{padding:0 10px}.dp__time_col_reg_with_button{padding:0 15px}.dp__time_col_sec{padding:0 10px}.dp__time_col_sec_with_button{padding:0 5px}.dp__time_col{text-align:center;display:flex;align-items:center;justify-content:center;flex-direction:column}.dp__time_col_block{font-size:var(--dp-time-font-size)}.dp__time_display_block{padding:0 3px}.dp__time_display_inline{padding:5px}.dp__time_picker_inline_container{display:flex;width:100%;justify-content:center}.dp__inc_dec_button{padding:5px;margin:0;height:var(--dp-time-inc-dec-button-size);width:var(--dp-time-inc-dec-button-size);display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:50%;color:var(--dp-icon-color);box-sizing:border-box}.dp__inc_dec_button svg{height:var(--dp-time-inc-dec-button-size);width:var(--dp-time-inc-dec-button-size)}.dp__inc_dec_button:hover{background:var(--dp-hover-color);color:var(--dp-primary-color)}.dp__time_display{cursor:pointer;color:var(--dp-text-color);border-radius:var(--dp-border-radius);display:flex;align-items:center;justify-content:center}.dp__time_display:hover:enabled{background:var(--dp-hover-color);color:var(--dp-hover-text-color)}.dp__inc_dec_button_inline{width:100%;padding:0;height:8px;cursor:pointer;display:flex;align-items:center}.dp__inc_dec_button_disabled,.dp__inc_dec_button_disabled:hover{background:var(--dp-disabled-color);color:var(--dp-disabled-color-text);cursor:not-allowed}.dp__pm_am_button{background:var(--dp-primary-color);color:var(--dp-primary-text-color);border:none;padding:var(--dp-common-padding);border-radius:var(--dp-border-radius);cursor:pointer}.dp__tp_inline_btn_bar{width:100%;height:4px;background-color:var(--dp-secondary-color);transition:var(--dp-common-transition);border-collapse:collapse}.dp__tp_inline_btn_top:hover .dp__tp_btn_in_r{background-color:var(--dp-primary-color);transform:rotate(12deg) scale(1.15) translateY(-2px)}.dp__tp_inline_btn_top:hover .dp__tp_btn_in_l{background-color:var(--dp-primary-color);transform:rotate(-12deg) scale(1.15) translateY(-2px)}.dp__tp_inline_btn_bottom:hover .dp__tp_btn_in_r{background-color:var(--dp-primary-color);transform:rotate(-12deg) scale(1.15) translateY(-2px)}.dp__tp_inline_btn_bottom:hover .dp__tp_btn_in_l{background-color:var(--dp-primary-color);transform:rotate(12deg) scale(1.15) translateY(-2px)}.dp--time-overlay-btn{background:none}.dp--time-invalid{background-color:var(--dp-disabled-color)}.dp__action_row{display:flex;align-items:center;width:100%;padding:var(--dp-action-row-padding);box-sizing:border-box;color:var(--dp-text-color);flex-flow:row nowrap}.dp__action_row svg{height:var(--dp-button-icon-height);width:auto}.dp__selection_preview{display:block;color:var(--dp-text-color);font-size:var(--dp-preview-font-size);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dp__action_buttons{display:flex;flex:0;white-space:nowrap;align-items:center;justify-content:flex-end;margin-inline-start:auto}.dp__action_button{display:inline-flex;align-items:center;background:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);padding:var(--dp-action-buttons-padding);line-height:var(--dp-action-button-height);margin-inline-start:3px;height:var(--dp-action-button-height);cursor:pointer;border-radius:var(--dp-border-radius);font-size:var(--dp-preview-font-size);font-family:var(--dp-font-family)}.dp__action_cancel{color:var(--dp-text-color);border:1px solid var(--dp-border-color)}.dp__action_cancel:hover{border-color:var(--dp-primary-color);transition:var(--dp-action-row-transtion)}.dp__action_buttons .dp__action_select{background:var(--dp-primary-color);color:var(--dp-primary-text-color)}.dp__action_buttons .dp__action_select:hover{background:var(--dp-primary-color);transition:var(--dp-action-row-transtion)}.dp__action_buttons .dp__action_select:disabled{background:var(--dp-primary-disabled-color);cursor:not-allowed}.dp-quarter-picker-wrap{display:flex;flex-direction:column;height:100%;min-width:var(--dp-menu-min-width)}.dp--qr-btn-disabled{cursor:not-allowed;background:var(--dp-disabled-color)}.dp--qr-btn-disabled:hover{background:var(--dp-disabled-color)}.dp--qr-btn{width:100%;padding:var(--dp-common-padding)}.dp--qr-btn:not(.dp--highlighted,.dp--qr-btn-active,.dp--qr-btn-disabled,.dp--qr-btn-between){background:none}.dp--qr-btn:hover:not(.dp--qr-btn-active,.dp--qr-btn-disabled){background:var(--dp-hover-color);color:var(--dp-hover-text-color);transition:var(--dp-common-transition)}.dp--quarter-items{display:flex;flex-direction:column;flex:1;width:100%;height:100%;justify-content:space-evenly}.dp--qr-btn-active{background:var(--dp-primary-color);color:var(--dp-primary-text-color)}.dp--qr-btn-between{background:var(--dp-hover-color);color:var(--dp-hover-text-color)}.dp__btn,.dp--time-overlay-btn,.dp--time-invalid,.dp--qr-btn{border:none;font:inherit;transition:var(--dp-common-transition);line-height:normal}.dp--year-mode-picker{display:flex;width:100%;align-items:center;justify-content:space-between;height:var(--dp-cell-size)}:root{--dp-common-transition: all 0.1s ease-in;--dp-menu-padding: 6px 8px;--dp-animation-duration: 0.1s;--dp-menu-appear-transition-timing: cubic-bezier(.4, 0, 1, 1);--dp-transition-timing: ease-out;--dp-action-row-transtion: all 0.2s ease-in;--dp-font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;--dp-border-radius: 4px;--dp-cell-border-radius: 4px;--dp-transition-length: 22px;--dp-transition-timing-general: 0.1s;--dp-button-height: 35px;--dp-month-year-row-height: 35px;--dp-month-year-row-button-size: 25px;--dp-button-icon-height: 20px;--dp-calendar-wrap-padding: 0 5px;--dp-cell-size: 35px;--dp-cell-padding: 5px;--dp-common-padding: 10px;--dp-input-icon-padding: 35px;--dp-input-padding: 6px 30px 6px 12px;--dp-menu-min-width: 260px;--dp-action-buttons-padding: 1px 6px;--dp-row-margin: 5px 0;--dp-calendar-header-cell-padding: 0.5rem;--dp-multi-calendars-spacing: 10px;--dp-overlay-col-padding: 3px;--dp-time-inc-dec-button-size: 32px;--dp-font-size: 1rem;--dp-preview-font-size: 0.8rem;--dp-time-font-size: 2rem;--dp-action-button-height: 22px;--dp-action-row-padding: 8px}.dp__theme_dark{--dp-background-color: #212121;--dp-text-color: #fff;--dp-hover-color: #484848;--dp-hover-text-color: #fff;--dp-hover-icon-color: #959595;--dp-primary-color: #005cb2;--dp-primary-disabled-color: #61a8ea;--dp-primary-text-color: #fff;--dp-secondary-color: #a9a9a9;--dp-border-color: #2d2d2d;--dp-menu-border-color: #2d2d2d;--dp-border-color-hover: #aaaeb7;--dp-border-color-focus: #aaaeb7;--dp-disabled-color: #737373;--dp-disabled-color-text: #d0d0d0;--dp-scroll-bar-background: #212121;--dp-scroll-bar-color: #484848;--dp-success-color: #00701a;--dp-success-color-disabled: #428f59;--dp-icon-color: #959595;--dp-danger-color: #e53935;--dp-marker-color: #e53935;--dp-tooltip-color: #3e3e3e;--dp-highlight-color: rgb(0 92 178 / 20%);--dp-range-between-dates-background-color: var(--dp-hover-color, #484848);--dp-range-between-dates-text-color: var(--dp-hover-text-color, #fff);--dp-range-between-border-color: var(--dp-hover-color, #fff);--dp-loader: 5px solid #005cb2}.dp__theme_light{--dp-background-color: #fff;--dp-text-color: #212121;--dp-hover-color: #f3f3f3;--dp-hover-text-color: #212121;--dp-hover-icon-color: #959595;--dp-primary-color: #1976d2;--dp-primary-disabled-color: #6bacea;--dp-primary-text-color: #f8f5f5;--dp-secondary-color: #c0c4cc;--dp-border-color: #ddd;--dp-menu-border-color: #ddd;--dp-border-color-hover: #aaaeb7;--dp-border-color-focus: #aaaeb7;--dp-disabled-color: #f6f6f6;--dp-scroll-bar-background: #f3f3f3;--dp-scroll-bar-color: #959595;--dp-success-color: #76d275;--dp-success-color-disabled: #a3d9b1;--dp-icon-color: #959595;--dp-danger-color: #ff6f60;--dp-marker-color: #ff6f60;--dp-tooltip-color: #fafafa;--dp-disabled-color-text: #8e8e8e;--dp-highlight-color: rgb(25 118 210 / 10%);--dp-range-between-dates-background-color: var(--dp-hover-color, #f3f3f3);--dp-range-between-dates-text-color: var(--dp-hover-text-color, #212121);--dp-range-between-border-color: var(--dp-hover-color, #f3f3f3);--dp-loader: 5px solid #1976d2}.dp__flex{display:flex;align-items:center}.dp__btn{background:none}.dp__main{font-family:var(--dp-font-family);user-select:none;box-sizing:border-box;position:relative;width:100%}.dp__pointer{cursor:pointer}.dp__icon{stroke:currentcolor;fill:currentcolor}.dp__button{width:100%;text-align:center;color:var(--dp-icon-color);cursor:pointer;display:flex;align-items:center;place-content:center center;padding:var(--dp-common-padding);box-sizing:border-box;height:var(--dp-button-height)}.dp__button.dp__overlay_action{position:absolute;bottom:0}.dp__button:hover{background:var(--dp-hover-color);color:var(--dp-hover-icon-color)}.dp__button svg{height:var(--dp-button-icon-height);width:auto}.dp__button_bottom{border-bottom-left-radius:var(--dp-border-radius);border-bottom-right-radius:var(--dp-border-radius)}.dp__flex_display{display:flex}.dp__flex_display_with_input{flex-direction:column;align-items:flex-start}.dp__relative{position:relative}.calendar-next-enter-active,.calendar-next-leave-active,.calendar-prev-enter-active,.calendar-prev-leave-active{transition:all var(--dp-transition-timing-general) ease-out}.calendar-next-enter-from{opacity:0;transform:translateX(var(--dp-transition-length))}.calendar-next-leave-to{opacity:0;transform:translateX(calc(var(--dp-transition-length) * -1))}.calendar-prev-enter-from{opacity:0;transform:translateX(calc(var(--dp-transition-length) * -1))}.calendar-prev-leave-to{opacity:0;transform:translateX(var(--dp-transition-length))}.dp-menu-appear-bottom-enter-active,.dp-menu-appear-bottom-leave-active,.dp-menu-appear-top-enter-active,.dp-menu-appear-top-leave-active,.dp-slide-up-enter-active,.dp-slide-up-leave-active,.dp-slide-down-enter-active,.dp-slide-down-leave-active{transition:all var(--dp-animation-duration) var(--dp-transition-timing)}.dp-menu-appear-top-enter-from,.dp-menu-appear-top-leave-to,.dp-slide-down-leave-to,.dp-slide-up-enter-from{opacity:0;transform:translateY(var(--dp-transition-length))}.dp-menu-appear-bottom-enter-from,.dp-menu-appear-bottom-leave-to,.dp-slide-down-enter-from,.dp-slide-up-leave-to{opacity:0;transform:translateY(calc(var(--dp-transition-length) * -1))}.dp--arrow-btn-nav{transition:var(--dp-common-transition)}.dp--highlighted{background-color:var(--dp-highlight-color)}/*# sourceMappingURL=main.css.map */
1480
1532
 
1481
1533
  .datetime-wrap {
1482
1534
  display: flex;
@@ -1791,14 +1843,14 @@ pre code.hljs{
1791
1843
  direction: ltr;
1792
1844
  }
1793
1845
 
1794
- .txtInputIconStart .iconStart[data-v-6e5ae00f] {
1846
+ .txtInputIconStart .iconStart[data-v-26b79ca5] {
1795
1847
  color: var(--input-color);
1796
1848
  position: absolute;
1797
1849
  inset-inline-start:calc(var(--input-height) / 3 - 0.25rem);
1798
1850
  margin-top: calc(var(--input-height) / 2 );
1799
1851
  line-height: 0;
1800
1852
  }
1801
- .textInputSpinnerWrap .spinner[data-v-6e5ae00f] {
1853
+ .textInputSpinnerWrap .spinner[data-v-26b79ca5] {
1802
1854
  color: var(--input-color);
1803
1855
  position: absolute;
1804
1856
  inset-inline-end: 0;
@@ -1808,28 +1860,28 @@ pre code.hljs{
1808
1860
  flex-direction: column;
1809
1861
  gap: 0;
1810
1862
  }
1811
- .top-bgl-ctrl-num-btn[data-v-6e5ae00f]{
1863
+ .top-bgl-ctrl-num-btn[data-v-26b79ca5]{
1812
1864
  margin-top: calc(var(--input-height) / 10) !important;
1813
1865
  }
1814
- .bgl-ctrl-num-btn[data-v-6e5ae00f]{
1866
+ .bgl-ctrl-num-btn[data-v-26b79ca5]{
1815
1867
  height: calc(var(--input-height) / 2.5) !important;
1816
1868
  isolation: isolate;
1817
1869
  }
1818
- .bgl-big-ctrl-num-btn[data-v-6e5ae00f]{
1870
+ .bgl-big-ctrl-num-btn[data-v-26b79ca5]{
1819
1871
  width: 100% !important;
1820
1872
  isolation: isolate;
1821
1873
  }
1822
- .bgl-number-input[data-v-6e5ae00f]{
1874
+ .bgl-number-input[data-v-26b79ca5]{
1823
1875
  padding-inline-end: 1.75rem !important;
1824
1876
  }
1825
1877
 
1826
- .otp_wrap[data-v-5c22c199] {
1878
+ .otp_wrap[data-v-8e8db33e] {
1827
1879
  display: flex;
1828
1880
  flex-direction: row;
1829
1881
  justify-content: center;
1830
1882
  align-items: center;
1831
1883
  }
1832
- .digit-box[data-v-5c22c199] {
1884
+ .digit-box[data-v-8e8db33e] {
1833
1885
  height: 3rem;
1834
1886
  flex-grow: 1;
1835
1887
  border: 1px solid var(--bgl-primary-tint);
@@ -1842,20 +1894,20 @@ pre code.hljs{
1842
1894
  -moz-appearance: textfield; /* Firefox */
1843
1895
  caret-color: transparent;
1844
1896
  }
1845
- .digit-box[data-v-5c22c199]::-webkit-outer-spin-button,
1846
- .digit-box[data-v-5c22c199]::-webkit-inner-spin-button {
1897
+ .digit-box[data-v-8e8db33e]::-webkit-outer-spin-button,
1898
+ .digit-box[data-v-8e8db33e]::-webkit-inner-spin-button {
1847
1899
  -webkit-appearance: none; /* Chrome, Safari, Edge, Opera */
1848
1900
  margin: 0;
1849
1901
  }
1850
- .digit-box[data-v-5c22c199]:focus {
1902
+ .digit-box[data-v-8e8db33e]:focus {
1851
1903
  outline: 1px solid var(--bgl-primary);
1852
1904
  filter: drop-shadow(0 0 0.25rem var(--bgl-primary));
1853
1905
  }
1854
- .digit-box[type="number"][data-v-5c22c199] {
1906
+ .digit-box[type="number"][data-v-8e8db33e] {
1855
1907
  -moz-appearance: textfield; /* Firefox */
1856
1908
  }
1857
1909
  @media screen and (max-width: 910px) {
1858
- .digit-box[data-v-5c22c199] {
1910
+ .digit-box[data-v-8e8db33e] {
1859
1911
  padding: 0.25rem;
1860
1912
  }
1861
1913
  }
@@ -2348,58 +2400,58 @@ line-height: 1.65;
2348
2400
  font-size: var(--label-font-size);
2349
2401
  }
2350
2402
 
2351
- .bagel-input textarea[data-v-54de82a7] {
2403
+ .bagel-input textarea[data-v-99e3ea36] {
2352
2404
  min-height: unset;
2353
2405
  font-size: var(--input-font-size);
2354
2406
  }
2355
- .bagel-input.text-input textarea[data-v-54de82a7] {
2407
+ .bagel-input.text-input textarea[data-v-99e3ea36] {
2356
2408
  resize: none;
2357
2409
  }
2358
- .code textarea[data-v-54de82a7] {
2410
+ .code textarea[data-v-99e3ea36] {
2359
2411
  font-family: 'Inconsolata', monospace;
2360
2412
  background: var(--bgl-code-bg) !important;
2361
2413
  color: var(--bgl-light-text) !important;
2362
2414
  }
2363
- .code textarea[data-v-54de82a7]::placeholder {
2415
+ .code textarea[data-v-99e3ea36]::placeholder {
2364
2416
  color: var(--bgl-light-text) !important;
2365
2417
  opacity: 0.3;
2366
2418
  }
2367
- .bagel-input.small[data-v-54de82a7] {
2419
+ .bagel-input.small[data-v-99e3ea36] {
2368
2420
  margin-bottom: 0;
2369
2421
  height: 30px;
2370
2422
  }
2371
- .bagel-input.dense label[data-v-54de82a7] {
2423
+ .bagel-input.dense label[data-v-99e3ea36] {
2372
2424
  display: flex;
2373
2425
  align-items: center;
2374
2426
  gap: 0.5rem;
2375
2427
  }
2376
- .bagel-input input[data-v-54de82a7]:disabled {
2428
+ .bagel-input input[data-v-99e3ea36]:disabled {
2377
2429
  background: #f5f5f5;
2378
2430
  }
2379
- .bagel-input label[data-v-54de82a7] {
2431
+ .bagel-input label[data-v-99e3ea36] {
2380
2432
  font-size: var(--label-font-size);
2381
2433
  }
2382
- .textInputIconWrap .bgl_icon-font[data-v-54de82a7] {
2434
+ .textInputIconWrap .bgl_icon-font[data-v-99e3ea36] {
2383
2435
  color: var(--input-color);
2384
2436
  position: absolute;
2385
2437
  inset-inline-end:calc(var(--input-height) / 3 - 0.25rem);
2386
2438
  margin-top: calc(var(--input-height) / 2 + 0.1rem);
2387
2439
  line-height: 0;
2388
2440
  }
2389
- .textInputIconWrap input[data-v-54de82a7]{
2441
+ .textInputIconWrap input[data-v-99e3ea36]{
2390
2442
  padding-inline-end: calc(var(--input-height) / 3 + 1.5rem);
2391
2443
  }
2392
- .txtInputIconStart .iconStart[data-v-54de82a7] {
2444
+ .txtInputIconStart .iconStart[data-v-99e3ea36] {
2393
2445
  color: var(--input-color);
2394
2446
  position: absolute;
2395
2447
  inset-inline-start:calc(var(--input-height) / 3 - 0.25rem);
2396
2448
  margin-top: calc(var(--input-height) / 2 );
2397
2449
  line-height: 0;
2398
2450
  }
2399
- .txtInputIconStart input[data-v-54de82a7], .txtInputIconStart textarea[data-v-54de82a7]{
2451
+ .txtInputIconStart input[data-v-99e3ea36], .txtInputIconStart textarea[data-v-99e3ea36]{
2400
2452
  padding-inline-start: calc(var(--input-height) / 3 + 1.5rem);
2401
2453
  }
2402
- .bagel-input.small textarea[data-v-54de82a7] {
2454
+ .bagel-input.small textarea[data-v-99e3ea36] {
2403
2455
  height: 30px;
2404
2456
  }
2405
2457
 
@@ -4566,7 +4618,8 @@ to {
4566
4618
  display: flex;
4567
4619
  }.justify-items-center {
4568
4620
  justify-items: center;
4569
- }.justify-content-center {
4621
+ }.justify-content,
4622
+ .justify-content-center {
4570
4623
  justify-content: center;
4571
4624
  }.justify-content-start {
4572
4625
  justify-content: start;
@@ -6261,6 +6314,86 @@ to {
6261
6314
  .h-min-100px,
6262
6315
  .min-h100px {
6263
6316
  min-height: 100px;
6317
+ }.h-110,
6318
+ .h110p,
6319
+ .h-110p {
6320
+ height: 110%;
6321
+ }.vh-110,
6322
+ .h-110vh,
6323
+ .h110vh {
6324
+ height: 110vh;
6325
+ }.h-110px,
6326
+ .h110px {
6327
+ height: 110px;
6328
+ }.hm-110px,
6329
+ .max-h-110px,
6330
+ .h-max-110px,
6331
+ .max-h110px {
6332
+ max-height: 110px;
6333
+ }.min-h-110px,
6334
+ .h-min-110px,
6335
+ .min-h110px {
6336
+ min-height: 110px;
6337
+ }.h-120,
6338
+ .h120p,
6339
+ .h-120p {
6340
+ height: 120%;
6341
+ }.vh-120,
6342
+ .h-120vh,
6343
+ .h120vh {
6344
+ height: 120vh;
6345
+ }.h-120px,
6346
+ .h120px {
6347
+ height: 120px;
6348
+ }.hm-120px,
6349
+ .max-h-120px,
6350
+ .h-max-120px,
6351
+ .max-h120px {
6352
+ max-height: 120px;
6353
+ }.min-h-120px,
6354
+ .h-min-120px,
6355
+ .min-h120px {
6356
+ min-height: 120px;
6357
+ }.h-130,
6358
+ .h130p,
6359
+ .h-130p {
6360
+ height: 130%;
6361
+ }.vh-130,
6362
+ .h-130vh,
6363
+ .h130vh {
6364
+ height: 130vh;
6365
+ }.h-130px,
6366
+ .h130px {
6367
+ height: 130px;
6368
+ }.hm-130px,
6369
+ .max-h-130px,
6370
+ .h-max-130px,
6371
+ .max-h130px {
6372
+ max-height: 130px;
6373
+ }.min-h-130px,
6374
+ .h-min-130px,
6375
+ .min-h130px {
6376
+ min-height: 130px;
6377
+ }.h-140,
6378
+ .h140p,
6379
+ .h-140p {
6380
+ height: 140%;
6381
+ }.vh-140,
6382
+ .h-140vh,
6383
+ .h140vh {
6384
+ height: 140vh;
6385
+ }.h-140px,
6386
+ .h140px {
6387
+ height: 140px;
6388
+ }.hm-140px,
6389
+ .max-h-140px,
6390
+ .h-max-140px,
6391
+ .max-h140px {
6392
+ max-height: 140px;
6393
+ }.min-h-140px,
6394
+ .h-min-140px,
6395
+ .min-h140px {
6396
+ min-height: 140px;
6264
6397
  }.h-150,
6265
6398
  .h150p,
6266
6399
  .h-150p {
@@ -8158,6 +8291,7 @@ to {
8158
8291
  justify-items: center;
8159
8292
  }
8160
8293
 
8294
+ .m_justify-content,
8161
8295
  .m_justify-content-center {
8162
8296
  justify-content: center;
8163
8297
  }
@@ -9904,6 +10038,126 @@ to {
9904
10038
  min-height: 100px;
9905
10039
  }
9906
10040
 
10041
+ .m_h-110,
10042
+ .m_h110p,
10043
+ .m_h-110p {
10044
+ height: 110%;
10045
+ }
10046
+
10047
+ .m_vh-110,
10048
+ .m_h-110vh,
10049
+ .m_h110vh {
10050
+ height: 110vh;
10051
+ }
10052
+
10053
+ .m_h-110px,
10054
+ .m_h110px {
10055
+ height: 110px;
10056
+ }
10057
+
10058
+ .m_hm-110px,
10059
+ .m_max-h-110px,
10060
+ .m_h-max-110px,
10061
+ .m_max-h110px {
10062
+ max-height: 110px;
10063
+ }
10064
+
10065
+ .m_min-h-110px,
10066
+ .m_h-min-110px,
10067
+ .m_min-h110px {
10068
+ min-height: 110px;
10069
+ }
10070
+
10071
+ .m_h-120,
10072
+ .m_h120p,
10073
+ .m_h-120p {
10074
+ height: 120%;
10075
+ }
10076
+
10077
+ .m_vh-120,
10078
+ .m_h-120vh,
10079
+ .m_h120vh {
10080
+ height: 120vh;
10081
+ }
10082
+
10083
+ .m_h-120px,
10084
+ .m_h120px {
10085
+ height: 120px;
10086
+ }
10087
+
10088
+ .m_hm-120px,
10089
+ .m_max-h-120px,
10090
+ .m_h-max-120px,
10091
+ .m_max-h120px {
10092
+ max-height: 120px;
10093
+ }
10094
+
10095
+ .m_min-h-120px,
10096
+ .m_h-min-120px,
10097
+ .m_min-h120px {
10098
+ min-height: 120px;
10099
+ }
10100
+
10101
+ .m_h-130,
10102
+ .m_h130p,
10103
+ .m_h-130p {
10104
+ height: 130%;
10105
+ }
10106
+
10107
+ .m_vh-130,
10108
+ .m_h-130vh,
10109
+ .m_h130vh {
10110
+ height: 130vh;
10111
+ }
10112
+
10113
+ .m_h-130px,
10114
+ .m_h130px {
10115
+ height: 130px;
10116
+ }
10117
+
10118
+ .m_hm-130px,
10119
+ .m_max-h-130px,
10120
+ .m_h-max-130px,
10121
+ .m_max-h130px {
10122
+ max-height: 130px;
10123
+ }
10124
+
10125
+ .m_min-h-130px,
10126
+ .m_h-min-130px,
10127
+ .m_min-h130px {
10128
+ min-height: 130px;
10129
+ }
10130
+
10131
+ .m_h-140,
10132
+ .m_h140p,
10133
+ .m_h-140p {
10134
+ height: 140%;
10135
+ }
10136
+
10137
+ .m_vh-140,
10138
+ .m_h-140vh,
10139
+ .m_h140vh {
10140
+ height: 140vh;
10141
+ }
10142
+
10143
+ .m_h-140px,
10144
+ .m_h140px {
10145
+ height: 140px;
10146
+ }
10147
+
10148
+ .m_hm-140px,
10149
+ .m_max-h-140px,
10150
+ .m_h-max-140px,
10151
+ .m_max-h140px {
10152
+ max-height: 140px;
10153
+ }
10154
+
10155
+ .m_min-h-140px,
10156
+ .m_h-min-140px,
10157
+ .m_min-h140px {
10158
+ min-height: 140px;
10159
+ }
10160
+
9907
10161
  .m_h-150,
9908
10162
  .m_h150p,
9909
10163
  .m_h-150p {
@@ -14094,144 +14348,144 @@ select {
14094
14348
  opacity: 0;
14095
14349
  }
14096
14350
  }.txt-center {
14097
- text-align: center;
14351
+ text-align: center;
14098
14352
  }.txt-start {
14099
- text-align: start;
14353
+ text-align: start;
14100
14354
  }.txt-end {
14101
- text-align: end;
14355
+ text-align: end;
14102
14356
  }.txt-small {
14103
- font-size: 12px;
14357
+ font-size: 12px;
14104
14358
  }.txt20,
14105
14359
  .txt-20 {
14106
- font-size: 20px;
14360
+ font-size: 20px;
14107
14361
  }.txt24,
14108
14362
  .txt-24 {
14109
- font-size: 24px;
14363
+ font-size: 24px;
14110
14364
  }.txt28,
14111
14365
  .txt-28 {
14112
- font-size: 28px;
14366
+ font-size: 28px;
14113
14367
  }.txt30,
14114
14368
  .txt-30 {
14115
- font-size: 30px;
14369
+ font-size: 30px;
14116
14370
  }.txt32,
14117
14371
  .txt-32 {
14118
- font-size: 32px;
14372
+ font-size: 32px;
14119
14373
  }.txt36,
14120
14374
  .txt-36 {
14121
- font-size: 36px;
14375
+ font-size: 36px;
14122
14376
  }.txt40,
14123
14377
  .txt-40 {
14124
- font-size: 40px;
14378
+ font-size: 40px;
14125
14379
  }.txt44,
14126
14380
  .txt-44 {
14127
- font-size: 44px;
14381
+ font-size: 44px;
14128
14382
  }.txt48,
14129
14383
  .txt-48 {
14130
- font-size: 48px;
14384
+ font-size: 48px;
14131
14385
  }.txt50,
14132
14386
  .txt-50 {
14133
- font-size: 50px;
14387
+ font-size: 50px;
14134
14388
  }.txt52,
14135
14389
  .txt-52 {
14136
- font-size: 52px;
14390
+ font-size: 52px;
14137
14391
  }.txt56,
14138
14392
  .txt-56 {
14139
- font-size: 56px;
14393
+ font-size: 56px;
14140
14394
  }.txt60,
14141
14395
  .txt-60 {
14142
- font-size: 60px;
14396
+ font-size: 60px;
14143
14397
  }.txt64,
14144
14398
  .txt-64 {
14145
- font-size: 64px;
14399
+ font-size: 64px;
14146
14400
  }.txt68,
14147
14401
  .txt-68 {
14148
- font-size: 68px;
14402
+ font-size: 68px;
14149
14403
  }.txt70,
14150
14404
  .txt-70 {
14151
- font-size: 70px;
14405
+ font-size: 70px;
14152
14406
  }.txt72,
14153
14407
  .txt-72 {
14154
- font-size: 72px;
14408
+ font-size: 72px;
14155
14409
  }.txt80,
14156
14410
  .txt-80 {
14157
- font-size: 80px;
14411
+ font-size: 80px;
14158
14412
  }.txt90,
14159
14413
  .txt-90 {
14160
- font-size: 90px;
14414
+ font-size: 90px;
14161
14415
  }.txt100,
14162
14416
  .txt-100 {
14163
- font-size: 100px;
14417
+ font-size: 100px;
14164
14418
  }.txt110,
14165
14419
  .txt-110 {
14166
- font-size: 110px;
14420
+ font-size: 110px;
14167
14421
  }.txt120,
14168
14422
  .txt-120 {
14169
- font-size: 120px;
14423
+ font-size: 120px;
14170
14424
  }.txt130,
14171
14425
  .txt-130 {
14172
- font-size: 130px;
14426
+ font-size: 130px;
14173
14427
  }.txt140,
14174
14428
  .txt-140 {
14175
- font-size: 140px;
14429
+ font-size: 140px;
14176
14430
  }.txt150,
14177
14431
  .txt-150 {
14178
- font-size: 150px;
14432
+ font-size: 150px;
14179
14433
  }.txt18,
14180
14434
  .txt-18 {
14181
- font-size: 18px;
14435
+ font-size: 18px;
14182
14436
  }.txt16,
14183
14437
  .txt-16 {
14184
- font-size: 16px;
14438
+ font-size: 16px;
14185
14439
  }.txt14,
14186
14440
  .txt-14 {
14187
- font-size: 14px;
14441
+ font-size: 14px;
14188
14442
  }.txt12,
14189
14443
  .txt-12 {
14190
- font-size: 12px;
14444
+ font-size: 12px;
14191
14445
  }.txt10,
14192
14446
  .txt-10 {
14193
- font-size: 10px;
14447
+ font-size: 10px;
14194
14448
  }.txt9,
14195
14449
  .txt-9 {
14196
- font-size: 9px;
14450
+ font-size: 9px;
14197
14451
  }.no-margin {
14198
- margin: 0;
14452
+ margin: 0;
14199
14453
  }.txt-gray,
14200
14454
  .txtgray {
14201
- color: var(--bgl-gray);
14455
+ color: var(--bgl-gray);
14202
14456
  }.txt-blue,
14203
14457
  .txtblue {
14204
- color: var(--bgl-primary);
14458
+ color: var(--bgl-primary);
14205
14459
  }.txt-black,
14206
14460
  .txtblack {
14207
- color: var(--bgl-black);
14461
+ color: var(--bgl-black);
14208
14462
  }.txt-red,
14209
14463
  .txtred {
14210
- color: var(--bgl-red);
14464
+ color: var(--bgl-red);
14211
14465
  }.txt-white,
14212
14466
  .txtwhite {
14213
- color: var(--bgl-white);
14467
+ color: var(--bgl-white);
14214
14468
  }.font-thin,
14215
14469
  .txt-thin {
14216
- font-weight: 100;
14470
+ font-weight: 100;
14217
14471
  }.extra-light,
14218
14472
  .font-extra-light,
14219
14473
  .txt-extra-light,
14220
14474
  .font-ultra-light,
14221
14475
  .txt-ultra-light {
14222
- font-weight: 200;
14476
+ font-weight: 200;
14223
14477
  }.light,
14224
14478
  .txt-light,
14225
14479
  .font-light {
14226
- font-weight: 300;
14480
+ font-weight: 300;
14227
14481
  }.regular,
14228
14482
  .txt-regular,
14229
14483
  .font-regular {
14230
- font-weight: 400;
14484
+ font-weight: 400;
14231
14485
  }.medium,
14232
14486
  .txt-medium,
14233
14487
  .font-medium {
14234
- font-weight: 500;
14488
+ font-weight: 500;
14235
14489
  }.semi,
14236
14490
  .semibold,
14237
14491
  .txt-semi,
@@ -14239,584 +14493,585 @@ select {
14239
14493
  .font-regular,
14240
14494
  .font-semi,
14241
14495
  .font-semibold {
14242
- font-weight: 600;
14496
+ font-weight: 600;
14243
14497
  }.bold,
14244
14498
  .txt-bold,
14245
14499
  .font-bold {
14246
- font-weight: 700;
14500
+ font-weight: 700;
14247
14501
  }.extra-bold,
14248
14502
  .font-extra-bold,
14249
14503
  .txt-extra-bold,
14250
14504
  .font-ultra-bold,
14251
14505
  .txt-ultra-bold {
14252
- font-weight: 800;
14506
+ font-weight: 800;
14253
14507
  }.black,
14254
14508
  .font-black {
14255
- font-weight: 900;
14509
+ font-weight: 900;
14256
14510
  }.line-height-0 {
14257
- line-height: 0;
14511
+ line-height: 0;
14258
14512
  }.line-height-01 {
14259
- line-height: 0.1;
14513
+ line-height: 0.1;
14260
14514
  }.line-height-02 {
14261
- line-height: 0.2;
14515
+ line-height: 0.2;
14262
14516
  }.line-height-03 {
14263
- line-height: 0.3;
14517
+ line-height: 0.3;
14264
14518
  }.line-height-04 {
14265
- line-height: 0.4;
14519
+ line-height: 0.4;
14266
14520
  }.line-height-05 {
14267
- line-height: 0.5;
14521
+ line-height: 0.5;
14268
14522
  }.line-height-06 {
14269
- line-height: 0.6;
14523
+ line-height: 0.6;
14270
14524
  }.line-height-07 {
14271
- line-height: 0.7;
14525
+ line-height: 0.7;
14272
14526
  }.line-height-08 {
14273
- line-height: 0.8;
14527
+ line-height: 0.8;
14274
14528
  }.line-height-09 {
14275
- line-height: 0.9;
14529
+ line-height: 0.9;
14276
14530
  }.line-height-1 {
14277
- line-height: 1;
14531
+ line-height: 1;
14278
14532
  }.line-height-11 {
14279
- line-height: 1.1;
14533
+ line-height: 1.1;
14280
14534
  }.line-height-12 {
14281
- line-height: 1.2;
14535
+ line-height: 1.2;
14282
14536
  }.line-height-13 {
14283
- line-height: 1.3;
14537
+ line-height: 1.3;
14284
14538
  }.line-height-14 {
14285
- line-height: 1.4;
14539
+ line-height: 1.4;
14286
14540
  }.line-height-15 {
14287
- line-height: 1.5;
14541
+ line-height: 1.5;
14288
14542
  }.line-height-16 {
14289
- line-height: 1.6;
14543
+ line-height: 1.6;
14290
14544
  }.line-height-17 {
14291
- line-height: 1.7;
14545
+ line-height: 1.7;
14292
14546
  }.line-height-18 {
14293
- line-height: 1.8;
14547
+ line-height: 1.8;
14294
14548
  }.line-height-19 {
14295
- line-height: 1.9;
14549
+ line-height: 1.9;
14296
14550
  }.line-height-2 {
14297
- line-height: 2;
14551
+ line-height: 2;
14298
14552
  }.line-height-normal {
14299
- line-height: normal;
14553
+ line-height: normal;
14300
14554
  }.ellipsis {
14301
- overflow: hidden;
14302
- display: block;
14303
- width: 100%;
14304
- text-overflow: ellipsis;
14555
+ overflow: hidden;
14556
+ display: block;
14557
+ width: 100%;
14558
+ text-overflow: ellipsis;
14305
14559
  }.ellipsis-1,
14306
14560
  .ellipsis-2,
14307
14561
  .ellipsis-3,
14308
14562
  .ellipsis-4,
14309
14563
  .ellipsis-5,
14310
14564
  .ellipsis-6 {
14311
- display: block;
14312
- display: -webkit-box;
14313
- max-width: 100%;
14314
- -webkit-box-orient: vertical;
14315
- overflow: hidden;
14316
- text-overflow: ellipsis;
14565
+ display: block;
14566
+ display: -webkit-box;
14567
+ max-width: 100%;
14568
+ -webkit-box-orient: vertical;
14569
+ overflow: hidden;
14570
+ text-overflow: ellipsis;
14317
14571
  }.ellipsis-1 {
14318
- -webkit-line-clamp: 1;
14572
+ -webkit-line-clamp: 1;
14319
14573
  }.ellipsis-2 {
14320
- -webkit-line-clamp: 2;
14574
+ -webkit-line-clamp: 2;
14321
14575
  }.ellipsis-3 {
14322
- -webkit-line-clamp: 3;
14576
+ -webkit-line-clamp: 3;
14323
14577
  }.ellipsis-4 {
14324
- -webkit-line-clamp: 4;
14578
+ -webkit-line-clamp: 4;
14325
14579
  }.ellipsis-5 {
14326
- -webkit-line-clamp: 5;
14580
+ -webkit-line-clamp: 5;
14327
14581
  }.ellipsis-6 {
14328
- -webkit-line-clamp: 6;
14582
+ -webkit-line-clamp: 6;
14329
14583
  }.pointer {
14330
- cursor: pointer;
14584
+ cursor: pointer;
14331
14585
  }.grab {
14332
- cursor: grab;
14586
+ cursor: grab;
14333
14587
  }.grab:active {
14334
- cursor: grabbing;
14588
+ cursor: grabbing;
14335
14589
  }.not-allowed {
14336
- cursor: not-allowed;
14590
+ cursor: not-allowed;
14337
14591
  }.decoration-none {
14338
- text-decoration: none;
14592
+ text-decoration: none;
14339
14593
  }.underline,
14340
14594
  .decoration-underline {
14341
- text-decoration: underline !important;
14595
+ text-decoration: underline !important;
14342
14596
  }.word-break {
14343
- word-break: break-word;
14597
+ word-break: break-word;
14344
14598
  }.word-break-all {
14345
- word-break: break-all;
14599
+ word-break: break-all;
14346
14600
  }.uppercase {
14347
- text-transform: uppercase;
14601
+ text-transform: uppercase;
14348
14602
  }.lowercase {
14349
- text-transform: lowercase;
14603
+ text-transform: lowercase;
14350
14604
  }.capitalize {
14351
- text-transform: capitalize;
14605
+ text-transform: capitalize;
14352
14606
  }.bgl_icon-font {
14353
- font-family: 'Material Symbols Outlined', serif !important;
14607
+ font-family: 'Material Symbols Outlined', serif !important;
14608
+ }.bgl_icon-font.fa {
14609
+ font-family: 'Font Awesome 6 Free', serif !important;
14354
14610
  }.nowrap {
14355
- white-space: nowrap;
14611
+ white-space: nowrap;
14356
14612
  }.balance {
14357
- text-wrap: balance;
14613
+ text-wrap: balance;
14358
14614
  }.pretty {
14359
- text-wrap: pretty;
14615
+ text-wrap: pretty;
14360
14616
  }.white-space {
14361
- white-space: nowrap;
14617
+ white-space: nowrap;
14362
14618
  }@media screen and (max-width: 910px) {
14619
+ .txt20,
14620
+ .txt-20 {
14621
+ font-size: 18px;
14622
+ }
14623
+
14624
+ .txt16,
14625
+ .txt-16 {
14626
+ font-size: 14px;
14627
+ }
14628
+
14629
+ .txt14,
14630
+ .txt-14 {
14631
+ font-size: 12px;
14632
+ }
14633
+
14634
+ .m_txt-center {
14635
+ text-align: center;
14636
+ }
14637
+
14638
+ .m_txt-start {
14639
+ text-align: start;
14640
+ }
14641
+
14642
+ .m_txt-end {
14643
+ text-align: end;
14644
+ }
14645
+
14646
+ .m_txt-small {
14647
+ font-size: 12px;
14648
+ }
14649
+
14650
+ .m_txt20,
14651
+ .m_txt-20 {
14652
+ font-size: 20px;
14653
+ }
14654
+
14655
+ .m_txt24,
14656
+ .m_txt-24 {
14657
+ font-size: 24px;
14658
+ }
14659
+
14660
+ .m_txt28,
14661
+ .m_txt-28 {
14662
+ font-size: 28px;
14663
+ }
14664
+
14665
+ .m_txt30,
14666
+ .m_txt-30 {
14667
+ font-size: 30px;
14668
+ }
14669
+
14670
+ .m_txt32,
14671
+ .m_txt-32 {
14672
+ font-size: 32px;
14673
+ }
14674
+
14675
+ .m_txt36,
14676
+ .m_txt-36 {
14677
+ font-size: 36px;
14678
+ }
14679
+
14680
+ .m_txt40,
14681
+ .m_txt-40 {
14682
+ font-size: 40px;
14683
+ }
14684
+
14685
+ .m_txt44,
14686
+ .m_txt-44 {
14687
+ font-size: 44px;
14688
+ }
14689
+
14690
+ .m_txt48,
14691
+ .m_txt-48 {
14692
+ font-size: 48px;
14693
+ }
14694
+
14695
+ .m_txt50,
14696
+ .m_txt-50 {
14697
+ font-size: 50px;
14698
+ }
14699
+
14700
+ .m_txt52,
14701
+ .m_txt-52 {
14702
+ font-size: 52px;
14703
+ }
14704
+
14705
+ .m_txt56,
14706
+ .m_txt-56 {
14707
+ font-size: 56px;
14708
+ }
14709
+
14710
+ .m_txt60,
14711
+ .m_txt-60 {
14712
+ font-size: 60px;
14713
+ }
14714
+
14715
+ .m_txt64,
14716
+ .m_txt-64 {
14717
+ font-size: 64px;
14718
+ }
14719
+
14720
+ .m_txt68,
14721
+ .m_txt-68 {
14722
+ font-size: 68px;
14723
+ }
14724
+
14725
+ .m_txt70,
14726
+ .m_txt-70 {
14727
+ font-size: 70px;
14728
+ }
14729
+
14730
+ .m_txt72,
14731
+ .m_txt-72 {
14732
+ font-size: 72px;
14733
+ }
14734
+
14735
+ .m_txt80,
14736
+ .m_txt-80 {
14737
+ font-size: 80px;
14738
+ }
14739
+
14740
+ .m_txt90,
14741
+ .m_txt-90 {
14742
+ font-size: 90px;
14743
+ }
14744
+
14745
+ .m_txt100,
14746
+ .m_txt-100 {
14747
+ font-size: 100px;
14748
+ }
14749
+
14750
+ .m_txt110,
14751
+ .m_txt-110 {
14752
+ font-size: 110px;
14753
+ }
14754
+
14755
+ .m_txt120,
14756
+ .m_txt-120 {
14757
+ font-size: 120px;
14758
+ }
14759
+
14760
+ .m_txt130,
14761
+ .m_txt-130 {
14762
+ font-size: 130px;
14763
+ }
14764
+
14765
+ .m_txt140,
14766
+ .m_txt-140 {
14767
+ font-size: 140px;
14768
+ }
14769
+
14770
+ .m_txt150,
14771
+ .m_txt-150 {
14772
+ font-size: 150px;
14773
+ }
14774
+
14775
+ .m_txt18,
14776
+ .m_txt-18 {
14777
+ font-size: 18px;
14778
+ }
14779
+
14780
+ .m_txt16,
14781
+ .m_txt-16 {
14782
+ font-size: 16px;
14783
+ }
14784
+
14785
+ .m_txt14,
14786
+ .m_txt-14 {
14787
+ font-size: 14px;
14788
+ }
14789
+
14790
+ .m_txt12,
14791
+ .m_txt-12 {
14792
+ font-size: 12px;
14793
+ }
14794
+
14795
+ .m_txt10,
14796
+ .m_txt-10 {
14797
+ font-size: 10px;
14798
+ }
14363
14799
 
14364
- .txt20,
14365
- .txt-20 {
14366
- font-size: 18px;
14367
- }
14368
-
14369
- .txt16,
14370
- .txt-16 {
14371
- font-size: 14px;
14372
- }
14373
-
14374
- .txt14,
14375
- .txt-14 {
14376
- font-size: 12px;
14377
- }
14378
-
14379
- .m_txt-center {
14380
- text-align: center;
14381
- }
14382
-
14383
- .m_txt-start {
14384
- text-align: start;
14385
- }
14386
-
14387
- .m_txt-end {
14388
- text-align: end;
14389
- }
14390
-
14391
- .m_txt-small {
14392
- font-size: 12px;
14393
- }
14394
-
14395
- .m_txt20,
14396
- .m_txt-20 {
14397
- font-size: 20px;
14398
- }
14399
-
14400
- .m_txt24,
14401
- .m_txt-24 {
14402
- font-size: 24px;
14403
- }
14404
-
14405
- .m_txt28,
14406
- .m_txt-28 {
14407
- font-size: 28px;
14408
- }
14409
-
14410
- .m_txt30,
14411
- .m_txt-30 {
14412
- font-size: 30px;
14413
- }
14414
-
14415
- .m_txt32,
14416
- .m_txt-32 {
14417
- font-size: 32px;
14418
- }
14419
-
14420
- .m_txt36,
14421
- .m_txt-36 {
14422
- font-size: 36px;
14423
- }
14424
-
14425
- .m_txt40,
14426
- .m_txt-40 {
14427
- font-size: 40px;
14428
- }
14429
-
14430
- .m_txt44,
14431
- .m_txt-44 {
14432
- font-size: 44px;
14433
- }
14434
-
14435
- .m_txt48,
14436
- .m_txt-48 {
14437
- font-size: 48px;
14438
- }
14439
-
14440
- .m_txt50,
14441
- .m_txt-50 {
14442
- font-size: 50px;
14443
- }
14444
-
14445
- .m_txt52,
14446
- .m_txt-52 {
14447
- font-size: 52px;
14448
- }
14449
-
14450
- .m_txt56,
14451
- .m_txt-56 {
14452
- font-size: 56px;
14453
- }
14454
-
14455
- .m_txt60,
14456
- .m_txt-60 {
14457
- font-size: 60px;
14458
- }
14459
-
14460
- .m_txt64,
14461
- .m_txt-64 {
14462
- font-size: 64px;
14463
- }
14464
-
14465
- .m_txt68,
14466
- .m_txt-68 {
14467
- font-size: 68px;
14468
- }
14469
-
14470
- .m_txt70,
14471
- .m_txt-70 {
14472
- font-size: 70px;
14473
- }
14474
-
14475
- .m_txt72,
14476
- .m_txt-72 {
14477
- font-size: 72px;
14478
- }
14479
-
14480
- .m_txt80,
14481
- .m_txt-80 {
14482
- font-size: 80px;
14483
- }
14484
-
14485
- .m_txt90,
14486
- .m_txt-90 {
14487
- font-size: 90px;
14488
- }
14489
-
14490
- .m_txt100,
14491
- .m_txt-100 {
14492
- font-size: 100px;
14493
- }
14494
-
14495
- .m_txt110,
14496
- .m_txt-110 {
14497
- font-size: 110px;
14498
- }
14499
-
14500
- .m_txt120,
14501
- .m_txt-120 {
14502
- font-size: 120px;
14503
- }
14504
-
14505
- .m_txt130,
14506
- .m_txt-130 {
14507
- font-size: 130px;
14508
- }
14509
-
14510
- .m_txt140,
14511
- .m_txt-140 {
14512
- font-size: 140px;
14513
- }
14514
-
14515
- .m_txt150,
14516
- .m_txt-150 {
14517
- font-size: 150px;
14518
- }
14519
-
14520
- .m_txt18,
14521
- .m_txt-18 {
14522
- font-size: 18px;
14523
- }
14524
-
14525
- .m_txt16,
14526
- .m_txt-16 {
14527
- font-size: 16px;
14528
- }
14529
-
14530
- .m_txt14,
14531
- .m_txt-14 {
14532
- font-size: 14px;
14533
- }
14534
-
14535
- .m_txt12,
14536
- .m_txt-12 {
14537
- font-size: 12px;
14538
- }
14539
-
14540
- .m_txt10,
14541
- .m_txt-10 {
14542
- font-size: 10px;
14543
- }
14544
-
14545
- .m_txt9,
14546
- .m_txt-9 {
14547
- font-size: 9px;
14548
- }
14549
-
14550
- .m_no-margin {
14551
- margin: 0;
14552
- }
14553
-
14554
- .m_txt-gray,
14555
- .m_txtgray {
14556
- color: var(--bgl-gray);
14557
- }
14558
-
14559
- .m_txt-blue,
14560
- .m_txtblue {
14561
- color: var(--bgl-primary);
14562
- }
14563
-
14564
- .m_txt-black,
14565
- .m_txtblack {
14566
- color: var(--bgl-black);
14567
- }
14568
-
14569
- .m_txt-red,
14570
- .m_txtred {
14571
- color: var(--bgl-red);
14572
- }
14573
-
14574
- .m_txt-white,
14575
- .m_txtwhite {
14576
- color: var(--bgl-white);
14577
- }
14578
-
14579
- .m_font-thin,
14580
- .m_txt-thin {
14581
- font-weight: 100;
14582
- }
14583
-
14584
- .m_extra-light,
14585
- .m_font-extra-light,
14586
- .m_txt-extra-light,
14587
- .m_font-ultra-light,
14588
- .m_txt-ultra-light {
14589
- font-weight: 200;
14590
- }
14591
-
14592
- .m_light,
14593
- .m_txt-light,
14594
- .m_font-light {
14595
- font-weight: 300;
14596
- }
14597
-
14598
- .m_regular,
14599
- .m_txt-regular,
14600
- .m_font-regular {
14601
- font-weight: 400;
14602
- }
14603
-
14604
- .m_medium,
14605
- .m_txt-medium,
14606
- .m_font-medium {
14607
- font-weight: 500;
14608
- }
14609
-
14610
- .m_semi,
14611
- .m_semibold,
14612
- .m_txt-semi,
14613
- .m_txt-semibold,
14614
- .m_font-regular,
14615
- .m_font-semi,
14616
- .m_font-semibold {
14617
- font-weight: 600;
14618
- }
14619
-
14620
- .m_bold,
14621
- .m_txt-bold,
14622
- .m_font-bold {
14623
- font-weight: 700;
14624
- }
14625
-
14626
- .m_extra-bold,
14627
- .m_font-extra-bold,
14628
- .m_txt-extra-bold,
14629
- .m_font-ultra-bold,
14630
- .m_txt-ultra-bold {
14631
- font-weight: 800;
14632
- }
14633
-
14634
- .m_black,
14635
- .m_font-black {
14636
- font-weight: 900;
14637
- }
14638
-
14639
- .m_line-height-0 {
14640
- line-height: 0;
14641
- }
14642
-
14643
- .m_line-height-01 {
14644
- line-height: 0.1;
14645
- }
14646
-
14647
- .m_line-height-02 {
14648
- line-height: 0.2;
14649
- }
14650
-
14651
- .m_line-height-03 {
14652
- line-height: 0.3;
14653
- }
14654
-
14655
- .m_line-height-04 {
14656
- line-height: 0.4;
14657
- }
14658
-
14659
- .m_line-height-05 {
14660
- line-height: 0.5;
14661
- }
14662
-
14663
- .m_line-height-06 {
14664
- line-height: 0.6;
14665
- }
14666
-
14667
- .m_line-height-07 {
14668
- line-height: 0.7;
14669
- }
14670
-
14671
- .m_line-height-08 {
14672
- line-height: 0.8;
14673
- }
14674
-
14675
- .m_line-height-09 {
14676
- line-height: 0.9;
14677
- }
14678
-
14679
- .m_line-height-1 {
14680
- line-height: 1;
14681
- }
14682
-
14683
- .m_line-height-11 {
14684
- line-height: 1.1;
14685
- }
14686
-
14687
- .m_line-height-12 {
14688
- line-height: 1.2;
14689
- }
14690
-
14691
- .m_line-height-13 {
14692
- line-height: 1.3;
14693
- }
14694
-
14695
- .m_line-height-14 {
14696
- line-height: 1.4;
14697
- }
14698
-
14699
- .m_line-height-15 {
14700
- line-height: 1.5;
14701
- }
14702
-
14703
- .m_line-height-16 {
14704
- line-height: 1.6;
14705
- }
14706
-
14707
- .m_line-height-17 {
14708
- line-height: 1.7;
14709
- }
14710
-
14711
- .m_line-height-18 {
14712
- line-height: 1.8;
14713
- }
14714
-
14715
- .m_line-height-19 {
14716
- line-height: 1.9;
14717
- }
14718
-
14719
- .m_line-height-2 {
14720
- line-height: 2;
14721
- }
14722
-
14723
- .m_line-height-normal {
14724
- line-height: normal;
14725
- }
14726
-
14727
- .m_ellipsis {
14728
- overflow: hidden;
14729
- display: block;
14730
- width: 100%;
14731
- text-overflow: ellipsis;
14732
- }
14733
-
14734
- .m_ellipsis-1,
14735
- .m_ellipsis-2,
14736
- .m_ellipsis-3,
14737
- .m_ellipsis-4,
14738
- .m_ellipsis-5,
14739
- .m_ellipsis-6 {
14740
- display: block;
14741
- display: -webkit-box;
14742
- max-width: 100%;
14743
- -webkit-box-orient: vertical;
14744
- overflow: hidden;
14745
- text-overflow: ellipsis;
14746
- }
14747
-
14748
- .m_ellipsis-1 {
14749
- -webkit-line-clamp: 1;
14750
- }
14751
-
14752
- .m_ellipsis-2 {
14753
- -webkit-line-clamp: 2;
14754
- }
14755
-
14756
- .m_ellipsis-3 {
14757
- -webkit-line-clamp: 3;
14758
- }
14759
-
14760
- .m_ellipsis-4 {
14761
- -webkit-line-clamp: 4;
14762
- }
14763
-
14764
- .m_ellipsis-5 {
14765
- -webkit-line-clamp: 5;
14766
- }
14767
-
14768
- .m_ellipsis-6 {
14769
- -webkit-line-clamp: 6;
14770
- }
14771
-
14772
- .m_pointer {
14773
- cursor: pointer;
14774
- }
14775
-
14776
- .m_decoration-none {
14777
- text-decoration: none;
14778
- }
14779
-
14780
- .m_underline,
14781
- .m_decoration-underline {
14782
- text-decoration: underline !important;
14783
- }
14784
-
14785
- .m_bgl_icon-font {
14786
- font-family: 'Material Symbols Outlined', serif;
14787
- }
14788
-
14789
- .m_nowrap {
14790
- white-space: nowrap;
14791
- }
14792
-
14793
- .m_balance {
14794
- text-wrap: balance;
14795
- }
14796
-
14797
- .m_pretty {
14798
- text-wrap: pretty;
14799
- }
14800
-
14801
- .m_word-break {
14802
- word-break: break-word;
14803
- }
14804
-
14805
- .m_word-break-all {
14806
- word-break: break-all;
14807
- }
14800
+ .m_txt9,
14801
+ .m_txt-9 {
14802
+ font-size: 9px;
14803
+ }
14808
14804
 
14809
- .m_uppercase {
14810
- text-transform: uppercase;
14811
- }
14805
+ .m_no-margin {
14806
+ margin: 0;
14807
+ }
14812
14808
 
14813
- .m_lowercase {
14814
- text-transform: lowercase;
14815
- }
14809
+ .m_txt-gray,
14810
+ .m_txtgray {
14811
+ color: var(--bgl-gray);
14812
+ }
14816
14813
 
14817
- .m_capitalize {
14818
- text-transform: capitalize;
14819
- }
14814
+ .m_txt-blue,
14815
+ .m_txtblue {
14816
+ color: var(--bgl-primary);
14817
+ }
14818
+
14819
+ .m_txt-black,
14820
+ .m_txtblack {
14821
+ color: var(--bgl-black);
14822
+ }
14823
+
14824
+ .m_txt-red,
14825
+ .m_txtred {
14826
+ color: var(--bgl-red);
14827
+ }
14828
+
14829
+ .m_txt-white,
14830
+ .m_txtwhite {
14831
+ color: var(--bgl-white);
14832
+ }
14833
+
14834
+ .m_font-thin,
14835
+ .m_txt-thin {
14836
+ font-weight: 100;
14837
+ }
14838
+
14839
+ .m_extra-light,
14840
+ .m_font-extra-light,
14841
+ .m_txt-extra-light,
14842
+ .m_font-ultra-light,
14843
+ .m_txt-ultra-light {
14844
+ font-weight: 200;
14845
+ }
14846
+
14847
+ .m_light,
14848
+ .m_txt-light,
14849
+ .m_font-light {
14850
+ font-weight: 300;
14851
+ }
14852
+
14853
+ .m_regular,
14854
+ .m_txt-regular,
14855
+ .m_font-regular {
14856
+ font-weight: 400;
14857
+ }
14858
+
14859
+ .m_medium,
14860
+ .m_txt-medium,
14861
+ .m_font-medium {
14862
+ font-weight: 500;
14863
+ }
14864
+
14865
+ .m_semi,
14866
+ .m_semibold,
14867
+ .m_txt-semi,
14868
+ .m_txt-semibold,
14869
+ .m_font-regular,
14870
+ .m_font-semi,
14871
+ .m_font-semibold {
14872
+ font-weight: 600;
14873
+ }
14874
+
14875
+ .m_bold,
14876
+ .m_txt-bold,
14877
+ .m_font-bold {
14878
+ font-weight: 700;
14879
+ }
14880
+
14881
+ .m_extra-bold,
14882
+ .m_font-extra-bold,
14883
+ .m_txt-extra-bold,
14884
+ .m_font-ultra-bold,
14885
+ .m_txt-ultra-bold {
14886
+ font-weight: 800;
14887
+ }
14888
+
14889
+ .m_black,
14890
+ .m_font-black {
14891
+ font-weight: 900;
14892
+ }
14893
+
14894
+ .m_line-height-0 {
14895
+ line-height: 0;
14896
+ }
14897
+
14898
+ .m_line-height-01 {
14899
+ line-height: 0.1;
14900
+ }
14901
+
14902
+ .m_line-height-02 {
14903
+ line-height: 0.2;
14904
+ }
14905
+
14906
+ .m_line-height-03 {
14907
+ line-height: 0.3;
14908
+ }
14909
+
14910
+ .m_line-height-04 {
14911
+ line-height: 0.4;
14912
+ }
14913
+
14914
+ .m_line-height-05 {
14915
+ line-height: 0.5;
14916
+ }
14917
+
14918
+ .m_line-height-06 {
14919
+ line-height: 0.6;
14920
+ }
14921
+
14922
+ .m_line-height-07 {
14923
+ line-height: 0.7;
14924
+ }
14925
+
14926
+ .m_line-height-08 {
14927
+ line-height: 0.8;
14928
+ }
14929
+
14930
+ .m_line-height-09 {
14931
+ line-height: 0.9;
14932
+ }
14933
+
14934
+ .m_line-height-1 {
14935
+ line-height: 1;
14936
+ }
14937
+
14938
+ .m_line-height-11 {
14939
+ line-height: 1.1;
14940
+ }
14941
+
14942
+ .m_line-height-12 {
14943
+ line-height: 1.2;
14944
+ }
14945
+
14946
+ .m_line-height-13 {
14947
+ line-height: 1.3;
14948
+ }
14949
+
14950
+ .m_line-height-14 {
14951
+ line-height: 1.4;
14952
+ }
14953
+
14954
+ .m_line-height-15 {
14955
+ line-height: 1.5;
14956
+ }
14957
+
14958
+ .m_line-height-16 {
14959
+ line-height: 1.6;
14960
+ }
14961
+
14962
+ .m_line-height-17 {
14963
+ line-height: 1.7;
14964
+ }
14965
+
14966
+ .m_line-height-18 {
14967
+ line-height: 1.8;
14968
+ }
14969
+
14970
+ .m_line-height-19 {
14971
+ line-height: 1.9;
14972
+ }
14973
+
14974
+ .m_line-height-2 {
14975
+ line-height: 2;
14976
+ }
14977
+
14978
+ .m_line-height-normal {
14979
+ line-height: normal;
14980
+ }
14981
+
14982
+ .m_ellipsis {
14983
+ overflow: hidden;
14984
+ display: block;
14985
+ width: 100%;
14986
+ text-overflow: ellipsis;
14987
+ }
14988
+
14989
+ .m_ellipsis-1,
14990
+ .m_ellipsis-2,
14991
+ .m_ellipsis-3,
14992
+ .m_ellipsis-4,
14993
+ .m_ellipsis-5,
14994
+ .m_ellipsis-6 {
14995
+ display: block;
14996
+ display: -webkit-box;
14997
+ max-width: 100%;
14998
+ -webkit-box-orient: vertical;
14999
+ overflow: hidden;
15000
+ text-overflow: ellipsis;
15001
+ }
15002
+
15003
+ .m_ellipsis-1 {
15004
+ -webkit-line-clamp: 1;
15005
+ }
15006
+
15007
+ .m_ellipsis-2 {
15008
+ -webkit-line-clamp: 2;
15009
+ }
15010
+
15011
+ .m_ellipsis-3 {
15012
+ -webkit-line-clamp: 3;
15013
+ }
15014
+
15015
+ .m_ellipsis-4 {
15016
+ -webkit-line-clamp: 4;
15017
+ }
15018
+
15019
+ .m_ellipsis-5 {
15020
+ -webkit-line-clamp: 5;
15021
+ }
15022
+
15023
+ .m_ellipsis-6 {
15024
+ -webkit-line-clamp: 6;
15025
+ }
15026
+
15027
+ .m_pointer {
15028
+ cursor: pointer;
15029
+ }
15030
+
15031
+ .m_decoration-none {
15032
+ text-decoration: none;
15033
+ }
15034
+
15035
+ .m_underline,
15036
+ .m_decoration-underline {
15037
+ text-decoration: underline !important;
15038
+ }
15039
+
15040
+ .m_bgl_icon-font {
15041
+ font-family: 'Material Symbols Outlined', serif;
15042
+ }
15043
+
15044
+ .m_nowrap {
15045
+ white-space: nowrap;
15046
+ }
15047
+
15048
+ .m_balance {
15049
+ text-wrap: balance;
15050
+ }
15051
+
15052
+ .m_pretty {
15053
+ text-wrap: pretty;
15054
+ }
15055
+
15056
+ .m_word-break {
15057
+ word-break: break-word;
15058
+ }
15059
+
15060
+ .m_word-break-all {
15061
+ word-break: break-all;
15062
+ }
15063
+
15064
+ .m_uppercase {
15065
+ text-transform: uppercase;
15066
+ }
15067
+
15068
+ .m_lowercase {
15069
+ text-transform: lowercase;
15070
+ }
15071
+
15072
+ .m_capitalize {
15073
+ text-transform: capitalize;
15074
+ }
14820
15075
  }body>div ::-webkit-scrollbar {
14821
15076
  width: 0.5em;
14822
15077
  height: 0.5rem;