pcm-shared-components 2.0.40 → 2.0.42

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 (35) hide show
  1. package/README.md +3 -0
  2. package/dist/components/Buttons/DropdownButton/index.js +1 -1
  3. package/dist/components/Buttons/TillButton/index.js +1 -1
  4. package/dist/components/Cards/EventCard/components/OpenEventCardDialog.js +97 -0
  5. package/dist/components/Cards/EventCard/components/OpenEventViewAllImageDialog.js +54 -0
  6. package/dist/components/Cards/EventCard/index.js +101 -0
  7. package/dist/components/Date/{DateRangeCalendar → DatePickerReactStyled/DateCalendar}/css/style.css +5 -0
  8. package/dist/components/Date/DatePickerReactStyled/DateCalendar/index.js +174 -0
  9. package/dist/components/Date/DatePickerReactStyled/DateCalendar/storybook/index.docs.mdx +122 -0
  10. package/dist/components/Date/DatePickerReactStyled/DateCalendar/storybook/index.stories.js +74 -0
  11. package/dist/components/Date/DatePickerReactStyled/DateRangeCalendar/css/style.css +119 -0
  12. package/dist/components/Date/{DateRangeCalendar → DatePickerReactStyled/DateRangeCalendar}/index.js +4 -21
  13. package/dist/components/Date/DatePickerReactStyled/DateRangeCalendar/storybook/index.docs.mdx +122 -0
  14. package/dist/components/Date/DatePickerReactStyled/DateRangeCalendar/storybook/index.stories.js +74 -0
  15. package/dist/components/Date/DatePickerReactStyled/common/theme.js +49 -0
  16. package/dist/components/Date/FancyDate/index.js +28 -0
  17. package/dist/components/Date/PricingCalendar/css/style.css +210 -0
  18. package/dist/components/Date/PricingCalendar/index.js +124 -0
  19. package/dist/components/Dialogs/GenericAppBar/components/GenericAppBarSubMenu.js +0 -1
  20. package/dist/components/Drawing/ImageCanvasDraw/components/Controls.js +0 -1
  21. package/dist/components/Icons/ImageAssets/index.js +61 -0
  22. package/dist/components/Images/HorizontalImageTile/index.js +110 -0
  23. package/dist/components/Images/VerticalImageTile/index.js +55 -0
  24. package/dist/components/Layout/SimpleTab/index.js +1 -3
  25. package/dist/components/Menus/ReusablePopupMenu/index.js +1 -1
  26. package/dist/components/NEW_COMPONENT/index.js +8 -2
  27. package/dist/components/NEW_COMPONENT/storybook/index.stories.js +1 -1
  28. package/dist/components/Platform/PlatformPaymentPlans/index.js +1 -1
  29. package/dist/index.js +9 -2
  30. package/dist/languages/en/translations.json +375 -20
  31. package/dist/languages/es/translations.json +374 -19
  32. package/dist/languages/fr/translations.json +375 -20
  33. package/dist/locals/i18n.js +0 -1
  34. package/dist/styles/tailwind.css +1 -1
  35. package/package.json +9 -8
@@ -0,0 +1,119 @@
1
+ .login_splash{
2
+ /* Login splash screen */
3
+ /* background-image: linear-gradient( rgba(18, 100, 36, 0.6) , rgba(245, 160, 3, 0.6)),url('/assets/images/backgrounds/marshmellows.jpg') !important; */
4
+ background-repeat: no-repeat;
5
+ background-size: cover;
6
+
7
+ }
8
+
9
+ [class^="withRouter-Login"]{
10
+ /* controls the gradient background when in mobile view the area behind the login box */
11
+ background: linear-gradient(to right, rgb(70, 83, 52) 0%, #526B33 100%) !important;
12
+ }
13
+
14
+ /* Override the grid drop down so it's not long when in vertical mode so the next calendar button are always near the bottom of the dropdown */
15
+ [data-testid="MonthGrid"] {
16
+ height: 100% !important; /* Adjust as necessary */
17
+ }
18
+
19
+
20
+ .back_blocks_small{
21
+ background-color:#f1632f;
22
+ border-radius: 13px;
23
+ padding: 2px;
24
+ margin: auto;
25
+ height: 20px;
26
+ color:#fff;
27
+ width: 80px;
28
+ }
29
+
30
+
31
+ .small_header {
32
+ height: 350px !important; /* any arbitrary height but best at the minimum initial height you would want. */
33
+ overflow: hidden;
34
+ transition: all 0.5s ease;
35
+ }
36
+ .small_title {
37
+ padding-top: 0px !important; /* any arbitrary height but best at the minimum initial height you would want. */
38
+ transition: all 0.5s ease;
39
+ }
40
+
41
+ .white_stroke{
42
+ text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4),
43
+ 0px 8px 13px rgba(0, 0, 0, 0.1),
44
+ 0px 18px 23px rgba(0, 0, 0, 0.1);
45
+ color:white;
46
+ }
47
+
48
+ .bottom_border input{
49
+ border-bottom: solid 1px #a0a0a0;
50
+ }
51
+
52
+ .gated_day_style{
53
+ display: -webkit-box;
54
+ display: -webkit-flex;
55
+ display: -ms-flexbox;
56
+ display: flex;
57
+ -webkit-box-pack: center;
58
+ -webkit-justify-content: center;
59
+ -ms-flex-pack: center;
60
+ justify-content: center;
61
+ -webkit-align-items: center;
62
+ -webkit-box-align: center;
63
+ -ms-flex-align: center;
64
+ align-items: center;
65
+ height: 100%;
66
+ width: 100%;
67
+ border: 1px dashed white;
68
+ }
69
+ .non_gated_day_style{
70
+ display: -webkit-box;
71
+ display: -webkit-flex;
72
+ display: -ms-flexbox;
73
+ display: flex;
74
+ -webkit-box-pack: center;
75
+ -webkit-justify-content: center;
76
+ -ms-flex-pack: center;
77
+ justify-content: center;
78
+ -webkit-align-items: center;
79
+ -webkit-box-align: center;
80
+ -ms-flex-align: center;
81
+ align-items: center;
82
+ height: 100%;
83
+ width: 100%;
84
+ }
85
+
86
+ /* Kinda stuck at version 1.5.0 for the date picker. In the newest version the z index is working fine with the material ui components.
87
+ this css will make it so the date picker range box is over the material ui components */
88
+ .zme > div{
89
+ z-index: 9999;
90
+ }
91
+
92
+
93
+ .sticky_menu {
94
+ margin: 0;
95
+ padding: 0;
96
+ width: 100%;
97
+ background-color: #fff;
98
+
99
+
100
+ }
101
+ @media only screen and (min-width: 780px) {
102
+ .sticky_menu {
103
+ top: 0;
104
+ position: -webkit-sticky;
105
+ position: sticky;
106
+ }
107
+ .sticky_search_bar {
108
+ top: -60px;
109
+ position: -webkit-sticky;
110
+ position: sticky;
111
+ }
112
+ }
113
+
114
+ .sticky_search_bar {
115
+ margin: 0;
116
+ padding: 0;
117
+ width: 100%;
118
+ /* background-color: #BFFFF3; */
119
+ }
@@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
3
3
  import { orange } from '@mui/material/colors';
4
4
  import { DateRangeInput } from '@datepicker-react/styled';
5
5
  import { ThemeProvider } from 'styled-components';
6
+ import { commonCalendarTheme } from '../common/theme';
6
7
  import './css/style.css';
7
8
 
8
9
  /**
@@ -72,27 +73,9 @@ export const DateRangeCalendar = props => {
72
73
  zIndex: 100
73
74
  }
74
75
  }, /*#__PURE__*/React.createElement(ThemeProvider, {
75
- theme: {
76
- breakpoints: ['32em', '48em', '64em'],
77
- reactDatepicker: {
78
- daySize: [36, 40],
79
- fontFamily: 'system-ui, -apple-system',
80
- colors: {
81
- accessibility: orange[900],
82
- selectedDay: orange[400],
83
- selectedDayHover: orange[900],
84
- primaryColor: orange[700]
85
- },
86
- inputFontSize: 16,
87
- selectDateDateFontSize: 18,
88
- dateRangeArrowIconColor: orange[700],
89
- inputLabelBorder: variant === 'outlined' ? undefined : 'none',
90
- datepickerBorderRadius: 5,
91
- datepickerZIndex: zIndex,
92
- dateRangeZIndex: zIndex,
93
- dateSingleZIndex: zIndex
94
- }
95
- }
76
+ theme: commonCalendarTheme({
77
+ ...props
78
+ })
96
79
  }, /*#__PURE__*/React.createElement(DateRangeInput, {
97
80
  phrases: {
98
81
  datepickerStartDateLabel: i18next.t('common.app.arrival_date'),
@@ -0,0 +1,122 @@
1
+ import { ArgsTable, Canvas, Meta, Story } from "@storybook/addon-docs";
2
+ import DateRangeCalendar from '..'
3
+
4
+
5
+ # DateRangeCalendar
6
+
7
+ ## Importing the component in your project.
8
+
9
+ ```js
10
+ import {DateRangeCalendar} from 'pcm-shared-components';
11
+ ```
12
+
13
+ ### Usage
14
+ Check out the index.stories.jsx file DateRangeCalendarComp to see a full simple example of how it whould be used in.
15
+
16
+ #### Minimum REQUIRED setup NEEDED to get the DateRangeCalendar working:
17
+ ```js
18
+ import React, {useState} from 'react'
19
+ import {DateRangeCalendar } from 'pcm-shared-components';
20
+
21
+ function App() {
22
+
23
+ //States
24
+ const [state, setState] = useState({ startDate: null, endDate: null, focusedInput: 'startDate' })
25
+
26
+ //Functions
27
+ const handleDatesChange = (data) => {
28
+ setState(data)
29
+ }
30
+ const handleOnFocusChange = (data) =>{
31
+ setState((previousState)=>{return{...previousState,focusedInput:data}});
32
+ }
33
+
34
+ return (
35
+ <DateRangeCalendar
36
+ onDatesChange={handleDatesChange}
37
+ onFocusChange={handleOnFocusChange}
38
+ startDate={state.startDate} // Date or null
39
+ endDate={state.endDate} // Date or null
40
+ focusedInput={state.focusedInput} // START_DATE, END_DATE or null
41
+ i18next={i18next}
42
+ />
43
+ )
44
+ }
45
+ ```
46
+ ### See a Codesandbox example with styling
47
+ https://codesandbox.io/s/react-date-picker-rangeinput-jw726?from-embed=&file=/src/index.js:2503-2537
48
+
49
+ ### Styling Props
50
+ The following are the theme props taken form the codesandbox from above so I have a local copy of the possible props.
51
+ ```js
52
+ <ThemeProvider
53
+ theme={{
54
+ breakpoints: ["32em", "48em", "64em"],
55
+ reactDatepicker: {
56
+ daySize: [36, 36],
57
+ fontFamily: "system-ui, -apple-system",
58
+ colors: {
59
+ primaryColor: "#4B35D2",
60
+ accessibility: "#4B35D2",
61
+ selectedDay: "#EEEDFD",
62
+ selectedDayHover: "#faf9fd",
63
+ normalDayHover: "#faf9fd"
64
+ },
65
+
66
+ dayLabelFontSize: 10,
67
+ dayLabelColor: "#8F8B9B",
68
+
69
+ selectDateLabelFontSize: 10,
70
+ selectDateLabelColor: "#D0CED5",
71
+ selectDateDateFontSize: 14,
72
+ selectDateDateColor: "#34323A",
73
+ selectDateBorderColor: "#4B35D2",
74
+
75
+ navButtonBorder: "none",
76
+
77
+ monthLabelFontSize: 16,
78
+ monthLabelFontWeight: 600,
79
+
80
+ dayBackground: "#ffffff",
81
+ dayBorderColor: "transparent",
82
+ dayColor: "#34323A",
83
+ dayFontSize: 15,
84
+ daySelectedBorderColor: "transparent",
85
+ daySelectedColor: "#34323A",
86
+ daySelectedHoverColor: "#000000",
87
+ dayHoverColor: "#000000",
88
+ dayHoverBackground: "#EEEDFD",
89
+ //dayHoverRangeColor: "#000000", // attention
90
+ dayHoverRangeBackground: "#EEEDFD",
91
+ dayAccessibilityBorderColor: "none",
92
+
93
+ inputLabelDisplay: "flex",
94
+ inputLabelBorder: "none",
95
+ inputLabelMargin: 0,
96
+ inputPadding: 0,
97
+ inputBorder: "none",
98
+ inputFontSize: 14,
99
+ inputColor: "#34323A",
100
+ inputActiveBoxShadow: "none",
101
+ inputBackground: "none",
102
+
103
+ datepickerZIndex: 1,
104
+ datepickerBoxShadow: "0px 5px 15px #28128733",
105
+ datepickerBorderRadius: 5,
106
+ datepickerPadding: 25,
107
+ datepickerPosition: "absolute",
108
+ datepickerMonthsGridGap: 10,
109
+
110
+ dateRangeBorder: "none",
111
+ dateRangeArrowIconColor: "#34323A",
112
+ dateRangeStartDateInputPadding: 0,
113
+ dateRangeEndDateInputPadding: 0,
114
+ dateRangeDatepickerWrapperLeft: 30,
115
+ dateRangeDatepickerWrapperTop: 80
116
+ }
117
+ }}
118
+ >
119
+ ```
120
+
121
+
122
+ <ArgsTable of={DateRangeCalendar} />
@@ -0,0 +1,74 @@
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
+ import { useState } from 'react';
3
+ import DateRangeCalendar from '..';
4
+ import IndexDocs from './index.docs.mdx';
5
+ import i18next from 'i18next';
6
+ const DateRangeCalendarComp = props => {
7
+ //State
8
+ const [state, setState] = useState({
9
+ startDate: null,
10
+ endDate: null,
11
+ focusedInput: null
12
+ });
13
+
14
+ //Functions
15
+ const handleOnDayRender = date => {
16
+ if (new Date(date).getDate() == 20 || new Date(date).getDate() == 21) {
17
+ return /*#__PURE__*/React.createElement("div", {
18
+ className: "flex flex-col bg-yellow-100/50 h-full w-full m-auto"
19
+ }, /*#__PURE__*/React.createElement("span", null, "\uD83E\uDD81"), /*#__PURE__*/React.createElement("span", {
20
+ className: "h-full text-center m-auto "
21
+ }, new Date(date).getDate()));
22
+ } else {
23
+ return /*#__PURE__*/React.createElement("span", null, new Date(date).getDate());
24
+ }
25
+ };
26
+ const handleIsDateBlocked = date => {
27
+ try {
28
+ return new Date(date).getDate() == 16;
29
+ } catch (error) {
30
+ console.error(error);
31
+ }
32
+ return false;
33
+ };
34
+ const handleOnDatesChange = data => {
35
+ setState(data);
36
+ };
37
+ const handleOnFocusChange = data => {
38
+ setState(previousState => {
39
+ return {
40
+ ...previousState,
41
+ focusedInput: data
42
+ };
43
+ });
44
+ };
45
+ return /*#__PURE__*/React.createElement(DateRangeCalendar, _extends({
46
+ onDayRender: date => handleOnDayRender(date),
47
+ isDateBlocked: handleIsDateBlocked,
48
+ onDatesChange: handleOnDatesChange,
49
+ onFocusChange: handleOnFocusChange,
50
+ startDate: state.startDate,
51
+ endDate: state.endDate,
52
+ focusedInput: state.focusedInput,
53
+ minBookingDays: 2,
54
+ i18next: i18next
55
+ }, props));
56
+ };
57
+ export default {
58
+ title: 'Date/DateRangeCalendar',
59
+ component: DateRangeCalendarComp,
60
+ argTypes: {},
61
+ parameters: {
62
+ docs: {
63
+ // inlineStories: true,
64
+ page: IndexDocs
65
+ }
66
+ }
67
+ };
68
+ const DateRangeCalendarTemplate = args => /*#__PURE__*/React.createElement(DateRangeCalendarComp, args);
69
+ export const DateRangeCalendarExample = DateRangeCalendarTemplate.bind({});
70
+ DateRangeCalendarExample.args = {
71
+ Help: 'Note not all props listed see docs for full list...',
72
+ variant: 'standard',
73
+ numberOfMonthsVisible: 2
74
+ };
@@ -0,0 +1,49 @@
1
+ import { orange } from '@mui/material/colors';
2
+
3
+ // Common settings shared across themes
4
+ const baseThemeSettings = {
5
+ breakpoints: ['32em', '48em', '64em'],
6
+ reactDatepicker: {
7
+ fontFamily: 'system-ui, -apple-system',
8
+ dayLabelFontSize: 12,
9
+ dayLabelColor: "#8F8B9B",
10
+ dayBorderColor: "transparent",
11
+ dayFontSize: 15,
12
+ daySelectedBorderColor: "transparent",
13
+ inputFontSize: 16,
14
+ selectDateDateFontSize: 18,
15
+ datepickerBorderRadius: 5,
16
+ dayAccessibilityBorderColor: "none"
17
+ }
18
+ };
19
+
20
+ // Main function to get the common calendar theme with variations
21
+ export const commonCalendarTheme = ({
22
+ variant = 'outlined',
23
+ zIndex = 1000,
24
+ daySize = [36, 40],
25
+ datepickerPadding = 25
26
+ }, themeConfig = {}) => {
27
+ const theme = {
28
+ ...baseThemeSettings,
29
+ reactDatepicker: {
30
+ ...baseThemeSettings.reactDatepicker,
31
+ daySize: daySize,
32
+ colors: {
33
+ primaryColor: orange[900],
34
+ accessibility: orange[400],
35
+ selectedDay: orange[400],
36
+ selectedDayHover: orange[900],
37
+ // normalDayHover: 'transparent',
38
+ ...themeConfig.colors // Allows overriding color settings
39
+ },
40
+ inputLabelBorder: variant === 'outlined' ? undefined : 'none',
41
+ datepickerZIndex: zIndex,
42
+ dateRangeZIndex: zIndex,
43
+ dateSingleZIndex: zIndex,
44
+ datepickerPadding: datepickerPadding,
45
+ ...themeConfig // Spread additional custom configuration
46
+ }
47
+ };
48
+ return theme;
49
+ };
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import moment from 'moment';
3
+ export const FancyDate = ({
4
+ date
5
+ }) => {
6
+ const formattedDate = moment(date).locale('en').format('dddd MMMM Do');
7
+ const dateParts = formattedDate.split(' ');
8
+ const month = dateParts[1].toUpperCase();
9
+ const day = dateParts[2];
10
+ const weekday = dateParts[0].toUpperCase();
11
+ return /*#__PURE__*/React.createElement("div", {
12
+ className: "flex flex-col justify-center items-center px-8 py-6 w-full h-full text-white font-fancy-date",
13
+ style: {
14
+ background: 'linear-gradient(45deg, rgb(92, 132, 48) 0%, rgb(124, 179, 66) 40%, rgb(241, 100, 47) 100%)',
15
+ backgroundSize: 'cover',
16
+ backdropFilter: 'blur(10px)'
17
+ }
18
+ }, /*#__PURE__*/React.createElement("span", {
19
+ className: "absolute top-20 font-bold text-6xl z-10"
20
+ }, month), /*#__PURE__*/React.createElement("div", {
21
+ className: "absolute top-64"
22
+ }, /*#__PURE__*/React.createElement("span", {
23
+ className: "mt-4 font-bold text-grey-800 text-2xl z-10"
24
+ }, weekday), /*#__PURE__*/React.createElement("span", {
25
+ className: "ml-8 mt-4 font-bold text-4xl z-10"
26
+ }, day)));
27
+ };
28
+ export default FancyDate;
@@ -0,0 +1,210 @@
1
+ /* reference
2
+ https://stackoverflow.com/questions/54170313/how-to-make-the-react-day-picker-wide-to-fill-all-the-screen-in-a-web-app-mobile */
3
+
4
+
5
+ :root {
6
+ --green_50: #e8f5e9;
7
+ --green_200: #c8e6c9;
8
+ --green_300: #81c784;
9
+ --green_400: #66bb6a;
10
+ --green_500: #4caf50;
11
+ --green_600: #43a047;
12
+ --green_pitchcamp: #72ae63;
13
+ --orange_0: #f1632f;
14
+ }
15
+
16
+
17
+
18
+ .arrow_box {
19
+ position: relative;
20
+ background: transparent;
21
+ border: none;
22
+ }
23
+ .arrow_box:after, .arrow_box:before {
24
+ left: 45%;
25
+ top: -50px;
26
+ border: solid transparent;
27
+ content: " ";
28
+ height: 0;
29
+ width: 0;
30
+ position: absolute;
31
+ pointer-events: none;
32
+ }
33
+
34
+ .arrow_box:after {
35
+ border-color: rgba(212, 209, 213, 0);
36
+ border-left-color: var(--green_pitchcamp);
37
+ border-width: 50px;
38
+ margin-top: -50px;
39
+ }
40
+ .arrow_box:before {
41
+ border-color: rgba(255, 255, 255, 0);
42
+ border-left-color: #ffffff;
43
+ border-width: 51px;
44
+ margin-top: -51px;
45
+ }
46
+
47
+ .DayPicker-Caption{
48
+ background-color: var(--green_pitchcamp) !important;
49
+ /* padding:10px; */
50
+ margin: 0px;
51
+ color: #fff;
52
+ border-top-right-radius: 5px;
53
+ border-top-left-radius: 5px;
54
+
55
+ }
56
+ .DayPicker-WeekdaysRow{
57
+ /* background-color: var(--green_50); */
58
+ border-bottom: solid 2px #fff !important;
59
+ }
60
+ .rdp-month{
61
+ margin-top: 0px !important;
62
+ margin-bottom: 0px !important;
63
+ margin-right: 0px !important;
64
+
65
+ /* Used for Firefox PITCH-53 */
66
+ width: 100% !important;
67
+
68
+ }
69
+ @media screen and (max-width: 600px) {
70
+ .rdp-month {
71
+ margin-top: 5px !important;
72
+ padding:0px;
73
+ margin: 0px;
74
+ }
75
+ }
76
+
77
+ .rdp-nav_button_previous{
78
+ /* background-image: url('/assets/images/icons/left_arrow.svg') !important; */
79
+ background-color: white;
80
+ /* margin-right: 40px !important; */
81
+ /* border-top-left-radius: 5px;
82
+ border-bottom-left-radius: 5px; */
83
+
84
+ border: solid #ededed 1px;
85
+ border-top-right-radius: 1px;
86
+ border-bottom-right-radius: 1px;
87
+ border-top-left-radius: 5px;
88
+ border-bottom-left-radius: 5px;
89
+ }
90
+
91
+ .rdp-nav_button_next{
92
+ /* background-image: url('/assets/images/icons/right_arrow.svg') !important; */
93
+ background-color: white;
94
+ border: solid #ededed 1px;
95
+ border-top-left-radius: 1px;
96
+ border-bottom-left-radius: 1px;
97
+ border-top-right-radius: 5px;
98
+ border-bottom-right-radius: 5px;
99
+ }
100
+
101
+ /* .rdp-nav{
102
+ top: 5px !important;;
103
+ height: 40px !important;
104
+ width: 40px !important;
105
+ } */
106
+
107
+ .rdp-table {
108
+ width: 100%;
109
+ height: 100%;
110
+ max-width: 100% !important;
111
+ /* border-collapse: unset !important; */
112
+ border-collapse: collapse;
113
+ border-spacing: 0;
114
+ border: solid #ededed 1px;
115
+
116
+ }
117
+
118
+ .rdp-months {
119
+ font-size: 14px;
120
+
121
+ }
122
+ @media screen and (max-width: 600px) {
123
+ .rdp-months {
124
+ font-size: 9px;
125
+ }
126
+ }
127
+
128
+ .rdp {
129
+ position: relative;
130
+ flex-direction: row;
131
+ user-select: none;
132
+ outline: none;
133
+ width: 100%;
134
+ margin: 0 !important;
135
+ padding: 0 !important;
136
+ }
137
+
138
+
139
+ .DayPicker-Months {
140
+ display: flex;
141
+ flex-direction: column;
142
+ flex-wrap: nowrap !important;
143
+ margin: 0 !important;
144
+ padding: 0 !important;
145
+ }
146
+ .rdp-row{
147
+
148
+ height: 100px !important;
149
+ border-top: solid #ededed 1px;
150
+ height: 100px !important;
151
+
152
+ }
153
+ @media screen and (max-width: 800px) {
154
+ .rdp-row {
155
+ height: 70px !important;
156
+ }
157
+ }
158
+
159
+
160
+ .rdp-cell{
161
+ /* padding: 12px !important; */
162
+ border-left: solid #ededed 1px;
163
+ }
164
+ .rdp-cell:hover{
165
+ background-color: #e6eefd;
166
+ border: solid #0069ff 1px;
167
+ }
168
+
169
+ .Selectable .DayPicker-Day--selected:not(.DayPicker-Day--start):not(.DayPicker-Day--end):not(.DayPicker-Day--outside) {
170
+ background-color: #dbdbdb !important;
171
+ color: #000;
172
+ }
173
+ .Selectable .DayPicker-Day {
174
+ border-radius: 0 !important;
175
+ }
176
+ .Selectable .DayPicker-Day--start {
177
+ background-color: var(--green_400) !important;
178
+ border-top-left-radius: 5% !important;
179
+ border-bottom-left-radius: 5% !important;
180
+ }
181
+
182
+ .Selectable .DayPicker-Day--end {
183
+ background-color: var(--green_400) !important;
184
+ border-top-right-radius: 5% !important;
185
+ border-bottom-right-radius: 5% !important;
186
+ }
187
+
188
+ .DayPicker-Day.DayPicker-Day--end.DayPicker-Day--selected.DayPicker-Day--outside, .DayPicker-Day.DayPicker-Day--start.DayPicker-Day--selected.DayPicker-Day--outside{
189
+ /* color: #ecf6fb !important; */
190
+ background-color: transparent !important;
191
+ }
192
+ .DayPicker-Day.DayPicker-Day--today{
193
+ color: var(--orange_0) !important;
194
+ }
195
+
196
+
197
+
198
+
199
+ /* .DayPicker-Day{
200
+
201
+ height: 60px !important;
202
+ width: 60px !important;
203
+ } */
204
+
205
+
206
+
207
+
208
+
209
+
210
+