.header-menu {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: circle(0% at 100% 0);
  pointer-events: none;
  transition: clip-path 700ms ease-in-out;
}
.header-menu.open {
  clip-path: circle(200% at 100% 0);
  pointer-events: all;
}

.header-menu__close {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 5;
}

.header-menu__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 160px 40px 40px 112px;
}

.header-menu__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.header-menu__links a {
  color: #98a2b3;
  font-family: Walibi0615, Poppins, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 26px;
  text-transform: uppercase;
}

.header-menu__links a:hover {
  color: #101828;
}

.header-menu__open {
  font-size: 16px;
  color: #384550;
  font-weight: 400;
  line-height: 1.5;
  margin-top: auto;
}
.header-menu__open strong {
  font-weight: 700;
}

.header-menu__buy {
  margin-top: 16px;
}

.opening-hours__container {
  width: 100%;
  display: flex;
  gap: 16px;
  padding: 4px;
}
.opening-hours__left {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
}
.opening-hours__datepicker {
}
.opening-hours__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.opening-hours__current {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.opening-hours__current-date {
  font-family: Walibi0615, Poppins, Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #1d2939;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.opening-hours__button {
  width: 100%;
}
.opening-hours__button .cmp-button {
  width: 100%;
}

.ui-datepicker-header {
  position: relative;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  position: absolute;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: cda-webfactory-icons;
  font-weight: 400;
  color: #384550;
  top: 0;
  padding: 0;
  margin: 0;
  font-size: 24px;
  cursor: pointer;
}
.ui-datepicker-prev.ui-state-disabled,
.ui-datepicker-next.ui-state-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.ui-datepicker-prev {
  left: 0;
}
.ui-datepicker-prev::before {
  content: '\f147';
  display: block;
}
.ui-datepicker-next {
  right: 0;
}
.ui-datepicker-next::before {
  content: '\f148';
  display: block;
}

.ui-datepicker-title {
  font-family: Walibi0615, Poppins, Helvetica, Arial, sans-serif;
  font-size: 23px;
  line-height: 36px;
  font-weight: 700;
  color: #1d2939;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.ui-datepicker-calendar {
  border-spacing: 8px;
  border-collapse: separate;
  margin: -8px;
}
.ui-datepicker-calendar thead,
.ui-datepicker-calendar tbody {
}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
  width: 45px;
  height: 45px;
  text-align: center;
  vertical-align: middle;
}
.ui-datepicker-calendar th {
  font-size: 12px;
  font-weight: 400;
  color: #344054;
  line-height: 18px;
  text-transform: uppercase;
}
.ui-datepicker-calendar td {
  font-size: 16px;
  color: #1d2939;
  font-weight: 400;
  line-height: 24px;
  border: 2px solid #d0d5dd;
  border-radius: 4px;
  cursor: pointer;
}
.ui-datepicker-calendar td:hover {
  border-color: #667085;
}
.ui-datepicker-calendar td a {
  color: inherit;
  text-decoration: none;
}
td.ui-datepicker-unselectable {
  pointer-events: none !important;
  opacity: 0.3 !important;
  border-color: #d0d5dd !important;
}
td.ui-datepicker-current-day {
  background: #1c2939 !important;
  border-color: #1c2939 !important;
  color: #fff !important;
}

@media screen and (max-width: 800px) {
  .header-menu__content {
    padding: 104px 32px 102px 32px;
  }
  .header-menu__buy {
    height: 70px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #f2f4f7;
    border-top: 1px solid #d0d5dd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
  }
  .header-menu__buy .cmp-button {
    width: 100%;
  }

  .opening-hours__container {
    flex-direction: column;
    gap: 40px;
  }
  .opening-hours__datepicker {
    margin: 0 auto;
    width: max-content;
    max-width: 100%;
  }
  .opening-hours__left {
    padding: 0;
  }
  .opening-hours__current .cmp-calendar__openings {
    display: flex;
  }
  .opening-hours__current .cmp-calendar__current-hours-title {
    display: inline-flex;
  }
  .opening-hours__current .cmp-calendar__current-hours {
    display: block;
  }
}

@media screen and (max-width: 425px) {
  .opening-hours__datepicker {
    margin: -16px;
    max-width: calc(100% + 32px);
  }
}

@media screen and (max-width: 560px) {
  .cmp-header__menu-btn {
    width: 48px;
    padding: 12px;
  }
  .cmp-header__icons {
    gap: 0;
  }
  .cmp-popup-menu__dropdown {
    font-size: 14px;
  }

  .cmp-popup-menu__dropdown .cmp-icon {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }
}
@media screen and (max-width: 440px) {
  .cmp-header__wrapper {
    padding: 0 10px;
  }
  .cmp-header__logo {
    width: 80px;
  }
}
