         /* Стили для навигационных кнопок календаря */
         .calendar-nav-left,
         .calendar-nav-right {
            position: absolute;
            bottom: 0rem;
            box-sizing: content-box;
            z-index: 100;
            border-radius: 50%;
            cursor: pointer;
            width: 48px;
            height: 48px;
            pointer-events: none;
            opacity: 1;
            visibility: visible;
            display: inline-flex;
            transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
            display: flex;
            -webkit-box-align: center;
            align-items: center;
         }

         /* Стиль span */
         .polite{
            border: 0px;
            clip: rect(0px, 0px, 0px, 0px);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0px;
            position: absolute;
            white-space: nowrap;
            width: 1px;
         }

         .calendar-nav-left {
            padding: 0.5rem 0.5rem 0.5rem 0.625rem;
            left: -0.375rem;
            -webkit-box-pack: start;
            justify-content: flex-start;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
           /* background: linear-gradient(
               270deg,
               rgba(255, 255, 255, 0) 0%,
               rgb(230, 233, 237) 25%,
               rgb(230, 233, 237) 50%
            );*/
         }

         .calendar-nav-left.visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
         }

         .calendar-nav-left.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
         }

         .calendar-nav-right {
            padding: 0.5rem 0.625rem 0.5rem 0.5rem;
            right: -0.375rem;
            -webkit-box-pack: end;
            justify-content: flex-end;
            pointer-events: auto;
           /* background: linear-gradient(
               90deg,
               rgba(255, 255, 255, 0) 0%,
               rgb(230, 233, 237) 25%,
               rgb(230, 233, 237) 50%
            );*/
         }

         /* Кнопки навигации календаря */
         .calendar-btn-prev,
         .calendar-btn-next {
            position: relative;
            display: inline-flex;
            -webkit-box-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            align-items: center;
            padding: 0px;
            border: 0px solid currentColor;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            pointer-events: auto;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.25;
            background-color: rgb(255, 255, 255);
            color: rgb(225, 32, 57);
            cursor: pointer;
            transition: all 0.2s ease-in;
         }

         .calendar-btn-prev:hover,
         .calendar-btn-next:hover {
            background-color: rgb(255, 255, 255);
            border-color: rgb(255, 255, 255);
            color: rgb(198, 19, 42);
         }

         .calendar-btn-prev:active,
         .calendar-btn-next:active {
            background-color: rgb(69, 75, 84);
            border-color: rgb(69, 75, 84);
            color: rgb(255, 255, 255);
         }

         .calendar-btn-prev svg,
         .calendar-btn-next svg {
            width: 1.25em;
            height: 1.25em;
         }

         /* Стили для выбранной даты */
         .day-selected {
            background-color: rgb(69, 75, 84) !important;
            color: rgb(255, 255, 255) !important;
         }

         /* Скрывать кнопку вперед когда достигли конца */
         .calendar-nav-right.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
         }

         /* Скрывать дни до текущей даты в текущем месяце */
         .calendar-day-hidden {
            display: none !important;
         }

         /* Показывать скрытые дни когда нажали на стрелку назад */
         .calendar-show-hidden-days .calendar-day-hidden {
            display: flex !important;
         }

         /* Выходные дни красные */
         .calendar-day-weekend {
            color: rgb(225, 32, 57) !important;
         }

         .calendar-day-weekend > span > div:first-child {
            color: rgb(225, 32, 57) !important;
         }

         /* Адаптивность для мобильных */
         @media (max-width: 768px) {
            .calendar-nav-left,
            .calendar-nav-right {
               width: 60px;
               padding: 0.4rem 0.4rem 0.4rem 0.5rem;
            }

            .calendar-btn-prev,
            .calendar-btn-next {
               padding: 0.6rem 0px;
               font-size: 0.875rem;
            }

            .calendar-btn-prev svg,
            .calendar-btn-next svg {
               width: 1.25em;
               height: 1.25em;
            }
         }

         .calendar-slider-block {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            width: 100%;
            position: relative;
            background-color: rgba(255, 255, 255, 0);
         }
         .list-month {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            overflow-x: scroll;
            margin-left: -1rem;
            margin-right: -1rem;
            padding-left: 1rem;
            padding-right: 1rem;
            gap: 8px;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
         }
         @media screen and (min-width: 48em) {
            .list-month {
               margin-left: 0;
               margin-right: 0;
               padding-left: 0;
               padding-right: 0;
            }
         }
         .list-month::-webkit-scrollbar {
            -webkit-appearance: none;
            display: none;
         }
         .one-month-block {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
         }
         .one-month-block:first-child {
            padding-left: 0rem;
         }
         @media screen and (min-width: 48em) {
            .one-month-block:first-child {
               padding-left: 0.25rem;
            }
         }
         .one-month-block:last-child {
            padding-right: 0rem;
         }
         @media screen and (min-width: 48em) {
            .one-month-block:last-child {
               padding-right: 0.25rem;
            }
         }
         .one-month {
            -webkit-align-self: flex-start;
            -ms-flex-item-align: flex-start;
            align-self: flex-start;
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            left: 0;
            width: -webkit-max-content;
            width: -moz-max-content;
            width: max-content;
            margin-top: 0;
            margin-bottom: 0;
            color: #5d6570;
            margin-right: 2.625rem;
            font-size: 14px;
            font-weight: 500;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
         }
         .list-days-month {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-align-items: flex-end;
            -webkit-box-align: flex-end;
            -ms-flex-align: flex-end;
            align-items: flex-end;
            padding-top: 0.25rem;
            padding-bottom: 0.25rem;
            gap: 8px;
         }
         .one-day {
            margin-top: 0.25rem;
            margin-bottom: 0.25rem;
         }
         .css-fb6nds-Button-Text-Box {
            cursor: pointer;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            border: 0 solid currentColor;
            -webkit-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 40px;
            height: 50px;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            padding-top: 0.375rem;
            padding-bottom: 0.375rem;
            border-radius: 8px;
            border-radius: 0.5rem;
            border: 0.0625rem solid currentColor;
            position: relative;
            display: -webkit-inline-box;
            display: -webkit-inline-flex;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            cursor: pointer;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            border: 0 solid currentColor;
            -webkit-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 40px;
            height: 50px;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            padding-top: 0.375rem;
            padding-bottom: 0.375rem;
            border-radius: 8px;
            cursor: pointer;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            border: 0 solid currentColor;
            -webkit-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 40px;
            height: 50px;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            padding-top: 0.375rem;
            padding-bottom: 0.375rem;
            border-radius: 8px;
         }
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box {
            background-color: rgba(255, 255, 255, 0);
         }
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:hover,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:active {
            background-color: #d1d8e0;
         }
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:active,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:hover,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:focus {
            color: #e12039;
         }
         @media (hover: none), (pointer: coarse) {
            .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:hover {
               background-color: rgba(255, 255, 255, 0);
            }
         }
         @media (min-width: 0) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 48em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 64em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 80em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 85.375em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 100em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (-ms-high-contrast: active),
            (prefers-contrast: more),
            (forced-colors: active) {
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               border-color: GrayText;
               color: GrayText;
            }
         }
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box {
            background-color: rgba(255, 255, 255, 0);
         }
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:hover,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:active {
            background-color: #d1d8e0;
         }
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:active,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:hover,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:focus {
            color: #e12039;
         }
         @media (hover: none), (pointer: coarse) {
            .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:hover {
               background-color: rgba(255, 255, 255, 0);
            }
         }
         @media (min-width: 0) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 48em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 64em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 80em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 85.375em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 100em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (-ms-high-contrast: active),
            (prefers-contrast: more),
            (forced-colors: active) {
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               border-color: GrayText;
               color: GrayText;
            }
         }
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box {
            background-color: rgba(255, 255, 255, 0);
         }
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:hover,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:active {
            background-color: #d1d8e0;
         }
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:active,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:hover,
         .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:focus {
            color: #e12039;
         }
         @media (hover: none), (pointer: coarse) {
            .css-fb6nds-Button-Text-Box.css-fb6nds-Button-Text-Box:hover {
               background-color: rgba(255, 255, 255, 0);
            }
         }
         @media (min-width: 0) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 48em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 64em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 80em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 85.375em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 100em) {
            .css-fb6nds-Button-Text-Box {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .css-fb6nds-Button-Text-Box svg {
               width: 1.25em;
               height: 1.25em;
            }
            .css-fb6nds-Button-Text-Box:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .css-fb6nds-Button-Text-Box:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (-ms-high-contrast: active),
            (prefers-contrast: more),
            (forced-colors: active) {
            .css-fb6nds-Button-Text-Box[aria-disabled="true"] {
               border-color: GrayText;
               color: GrayText;
            }
         }
         .css-fb6nds-Button-Text-Box:focus {
            box-shadow: 0 0 0 0.25rem #454b54;
            outline: none;
         }
         @media (-ms-high-contrast: active),
            (prefers-contrast: more),
            (forced-colors: active) {
            .css-fb6nds-Button-Text-Box:focus {
               outline: auto;
            }
         }
         .one-day-number {
            font-size: 18px;
            line-height: 1;
            font-weight: 600;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
         }
         .one-day-week {
            margin-top: 2px;
            font-size: 14px;
            line-height: 1;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
         }
         .one-day-button {
            cursor: pointer;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            border: 0 solid currentColor;
            -webkit-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 40px;
            height: 50px;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            padding-top: 0.375rem;
            padding-bottom: 0.375rem;
            border-radius: 8px;
            border-radius: 0.5rem;
            border: 0.0625rem solid currentColor;
            position: relative;
            display: -webkit-inline-box;
            display: -webkit-inline-flex;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            cursor: pointer;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            border: 0 solid currentColor;
            -webkit-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 40px;
            height: 50px;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            padding-top: 0.375rem;
            padding-bottom: 0.375rem;
            border-radius: 8px;
            cursor: pointer;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            border: 0 solid currentColor;
            -webkit-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 40px;
            height: 50px;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            padding-top: 0.375rem;
            padding-bottom: 0.375rem;
            border-radius: 8px;
         }
         .one-day-button.one-day-button {
            background-color: rgba(255, 255, 255, 0);
         }
         .one-day-button.one-day-button:hover,
         .one-day-button.one-day-button:active {
            background-color: #d1d8e0;
         }
         .one-day-button.one-day-button,
         .one-day-button.one-day-button:active,
         .one-day-button.one-day-button:hover,
         .one-day-button.one-day-button:focus {
            color: #13151a;
         }
         @media (hover: none), (pointer: coarse) {
            .one-day-button.one-day-button:hover {
               background-color: rgba(255, 255, 255, 0);
            }
         }
         @media (min-width: 0) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 48em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 64em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 80em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 85.375em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 100em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (-ms-high-contrast: active),
            (prefers-contrast: more),
            (forced-colors: active) {
            .one-day-button[aria-disabled="true"] {
               border-color: GrayText;
               color: GrayText;
            }
         }
         .one-day-button.one-day-button {
            background-color: rgba(255, 255, 255, 0);
         }
         .one-day-button.one-day-button:hover,
         .one-day-button.one-day-button:active {
            background-color: #d1d8e0;
         }
         .one-day-button.one-day-button,
         .one-day-button.one-day-button:active,
         .one-day-button.one-day-button:hover,
         .one-day-button.one-day-button:focus {
            color: #13151a;
         }
         @media (hover: none), (pointer: coarse) {
            .one-day-button.one-day-button:hover {
               background-color: rgba(255, 255, 255, 0);
            }
         }
         @media (min-width: 0) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 48em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 64em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 80em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 85.375em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 100em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (-ms-high-contrast: active),
            (prefers-contrast: more),
            (forced-colors: active) {
            .one-day-button[aria-disabled="true"] {
               border-color: GrayText;
               color: GrayText;
            }
         }
         .one-day-button.one-day-button {
            background-color: rgba(255, 255, 255, 0);
         }
         .one-day-button.one-day-button:hover,
         .one-day-button.one-day-button:active {
            background-color: #d1d8e0;
         }
         .one-day-button.one-day-button,
         .one-day-button.one-day-button:active,
         .one-day-button.one-day-button:hover,
         .one-day-button.one-day-button:focus {
            color: #13151a;
         }
         @media (hover: none), (pointer: coarse) {
            .one-day-button.one-day-button:hover {
               background-color: rgba(255, 255, 255, 0);
            }
         }
         @media (min-width: 0) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 48em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 64em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 80em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 85.375em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (min-width: 100em) {
            .one-day-button {
               padding-top: 0.8125rem;
               padding-left: 0;
               padding-right: 0;
               padding-bottom: 0.8125rem;
               font-size: 1rem;
               font-weight: 400;
               line-height: 1.25;
               background-color: #fff;
               border-color: #fff;
               color: #e12039;
               cursor: pointer;
            }
            .one-day-button svg {
               width: 1.25em;
               height: 1.25em;
            }
            .one-day-button:hover {
               background-color: #fff;
               border-color: #fff;
               color: #c6132a;
            }
            .one-day-button:active {
               background-color: #fff;
               border-color: #fff;
               color: #a20e21;
            }
            .one-day-button[aria-disabled="true"] {
               background-color: rgba(255, 255, 255, 0);
               border-color: rgba(255, 255, 255, 0);
               color: #7c8591;
            }
         }
         @media (-ms-high-contrast: active),
            (prefers-contrast: more),
            (forced-colors: active) {
            .one-day-button[aria-disabled="true"] {
               border-color: GrayText;
               color: GrayText;
            }
         }
         .one-day-button:focus {
            box-shadow: 0 0 0 0.25rem #454b54;
            outline: none;
         }
         @media (-ms-high-contrast: active),
            (prefers-contrast: more),
            (forced-colors: active) {
            .one-day-button:focus {
               outline: auto;
            }
         }
         .month-splitter {
            width: 1px;
            height: 38px;
            margin-left: 12px;
            margin-right: 12px;
            background-color: #e6e9ed;
            -webkit-align-self: center;
            -ms-flex-item-align: center;
            align-self: center;
         }


         /*****************************************************/


           /* Стили для выбранной даты */
         .day-selected {
            background-color: rgb(69, 75, 84) !important;
            color: rgb(255, 255, 255) !important;
         }

         /* Адаптивность для мобильных */
         @media (max-width: 768px) {
            .calendar-nav-left,
            .calendar-nav-right {
               width: 60px;
               padding: 0.4rem 0.4rem 0.4rem 0.5rem;
            }

            .calendar-btn-prev,
            .calendar-btn-next {
               width: 40px;
               height: 40px;
            }

            .calendar-btn-prev svg,
            .calendar-btn-next svg {
               width: 1.25em;
               height: 1.25em;
            }
         }

         /* Стили для панели выбранной даты */
         .date-selection-panel {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgb(255, 255, 255);
            border: 1px solid rgb(230, 233, 237);
            border-radius: 8px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 100;
         }

         .close-btn {
            background-color: transparent;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
            color: rgb(225, 32, 57);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s ease-in;
         }

         .close-btn:hover {
            color: rgb(198, 19, 42);
         }

         .close-btn:active {
            color: rgb(69, 75, 84);
         }

         .selected-date-text {
            font-size: 1rem;
            color: rgb(51, 51, 51);
            font-weight: 500;
         }