/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
:root {
  --duet-color-primary: #441435!important;
}

#cnm-agenda {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  background: #fff;
  height: 100vh;
  padding: 0;
  z-index: 9999;
  transition: transform 0.3s ease-in-out, opacity 0.1s ease-in-out 0.2s;
  transform: translate(100%);
  opacity: 0;
  width: 50rem;
  max-width: 100%;
  overflow-y: scroll;
}

#cnm-agenda.toggled {
  transform: translate(0%);
  opacity: 1;
}

#cnm-agenda header {
  position: sticky;
  z-index: 2;
  background: #fff;
  top: 0;
  padding: 2rem;
}

#cnm-agenda header .cnm-agenda__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#cnm-agenda header #agenda-title {
  margin: 0;
  line-height: 1;
  font-family: var(--wp--preset--font-family--cnm);
  font-size: var(--wp--custom--typography--font-size--titre-1);
  font-weight: 700;
  color: var(--wp--preset--color--mauve) !important;
}

#cnm-agenda-close {
  background: var(--wp--preset--color--mauve);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: 0.3rem;
  cursor: pointer;
}

#cnm-agenda-close:hover {
  background: var(--wp--preset--color--orange);
}

#cnm-agenda-close i::before {
  width: 10px;
  height: 10px;
}

#cnm-agenda .cnm-agenda__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  position: relative;
  align-items: center;
}

#cnm-agenda .cnm-agenda__action {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1;
  gap: 0.5rem;
  text-decoration: none;
}

#cnm-agenda .cnm-agenda__action[data-action=reset] {
  margin-right: 0;
  margin-left: auto;
}

#cnm-agenda .cnm-agenda__action .caleran-input {
  position: absolute;
  top: 100%;
  left: 0;
}

#cnm-agenda .cnm-agenda__action.hide-calendar .caleran-input {
  display: none !important;
  visibility: hidden;
}

#cnm-agenda .cnm-agenda__action.bordered {
  border: 0.1rem solid rgba(25, 23, 30, 0.2);
  border-radius: 2rem;
  padding: 1.125rem 1.25rem;
}

#cnm-agenda .cnm-agenda__action.bordered:hover, #cnm-agenda .cnm-agenda__action.bordered.active, #cnm-agenda .cnm-agenda__action.bordered.open {
  background: var(--wp--preset--color--mauve);
  border-color: var(--wp--preset--color--mauve);
  color: #fff;
}

#cnm-agenda .cnm-agenda__action.bordered:hover input, #cnm-agenda .cnm-agenda__action.bordered:hover button, #cnm-agenda .cnm-agenda__action.bordered.active input, #cnm-agenda .cnm-agenda__action.bordered.active button, #cnm-agenda .cnm-agenda__action.bordered.open input, #cnm-agenda .cnm-agenda__action.bordered.open button {
  color: #fff;
}

#cnm-agenda .cnm-agenda__action i::before {
  width: 1rem;
  height: 1rem;
}

#cnm-agenda .cnm-agenda__no-results {
  text-align: center;
  padding: 4rem 2rem;
  font-size: 1rem;
  color: var(--wp--preset--color--mauve);
}

#cnm-agenda-content-wrap {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

#cnm-agenda-content-wrap::-webkit-scrollbar {
  width: 0.7rem;
}

#cnm-agenda-content-wrap::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: var(--wp--preset--color--light-grey);
  border: 1px solid #cacaca;
}

#cnm-agenda-content-wrap::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: var(--wp--preset--color--orange);
}

#cnm-agenda-content-wrap .wp-block-cnm-cnm-card {
  height: auto;
  padding: 0;
}

#cnm-agenda-content-wrap .cnm-card__link {
  display: flex !important;
  flex-direction: column;
  color: initial;
  background: var(--wp--preset--color--light-grey) !important;
}

#cnm-agenda-content-wrap .cnm-card__date-cnm {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: auto;
}

#cnm-agenda-content-wrap .cnm-card__content__tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

#cnm-agenda-content-wrap .cnm-card__content__tags span {
  padding: 0.5rem;
  font-size: 0.7rem;
  background-color: #fff;
  line-height: 1;
  border-radius: 0.5rem;
}

#cnm-agenda-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  #cnm-agenda-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

#cnm-agenda-reset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
}

#cnm-agenda-range {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1;
  gap: 0.5rem;
  text-decoration: none;
}

#cnm-agenda-manual-range {
  background: transparent;
  border: none;
  min-width: 190px;
  font-size: 0.875rem;
}

#cnm-agenda-manual-range::-moz-placeholder {
  color: #fff;
  font-size: 0.875rem;
}

#cnm-agenda-manual-range::placeholder {
  color: #fff;
  font-size: 0.875rem;
}

#cnm-agenda-content {
  min-width: inherit !important;
}

.cnm-agenda-filters__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(25, 23, 30, 0.2);
  border-radius: 1rem;
  align-items: center;
}

.cnm-agenda-filters__filter__title {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wp--preset--color--mauve);
  width: 50%;
  margin-bottom: 1rem;
}

.cnm-agenda-filters__filter p {
  font-size: 0.7rem;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  color: var(--wp--preset--color--mauve);
  margin: 1rem 0 0.5rem;
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm p {
  font-size: 0.8rem;
  margin: 0;
  font-weight: bold;
  color: var(--wp--preset--color--mauve);
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm {
  /* The switch - the box around the slider */
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm .switch {
  position: relative;
  display: inline-block;
  width: 30px;
  min-width: 30px;
  height: 17px;
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm {
  /* Hide default HTML checkbox */
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm {
  /* The slider */
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm .slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm input:checked + .slider {
  background-color: var(--wp--preset--color--mauve);
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm input:focus + .slider {
  box-shadow: 0 0 1px var(--wp--preset--color--mauve);
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm input:checked + .slider:before {
  transform: translateX(13px);
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm {
  /* Rounded sliders */
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm .slider.round {
  border-radius: 17px;
}

.cnm-agenda-filters__filter .cnm-agenda-filter-date-cnm .slider.round:before {
  border-radius: 50%;
}

.cnm-agenda-filters__evenements, .cnm-agenda-filters__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cnm-agenda-filters__evenements button, .cnm-agenda-filters__tags button {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 2rem;
  border: 1px solid rgba(25, 23, 30, 0.2);
  font-weight: 500;
  cursor: pointer;
  order: 2;
  text-decoration: none;
}

.cnm-agenda-filters__evenements button[data-filter=""], .cnm-agenda-filters__tags button[data-filter=""] {
  order: 1;
}

.cnm-agenda-filters__evenements button.active, .cnm-agenda-filters__evenements button:hover, .cnm-agenda-filters__tags button.active, .cnm-agenda-filters__tags button:hover {
  background-color: var(--wp--preset--color--mauve);
  border-color: var(--wp--preset--color--mauve);
  color: #fff;
}

.caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-today, .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-today {
  color: #A76905 !important;
}

.caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day:hover:not(.caleran-hovered):not(.caleran-selected), .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day:hover:not(.caleran-hovered):not(.caleran-selected) {
  background: rgba(var(--wp--preset--color--mauve), 10%);
}

.caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-hovered, .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-hovered {
  background: rgba(var(--wp--preset--color--mauve), 30%);
}

.caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-selected, .caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-start, .caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-end, .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-selected, .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-start, .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-end {
  background: rgba(var(--wp--preset--color--mauve), 80%);
  color: #fff !important;
}

.caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-start:not(.caleran-hovered) span, .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-start:not(.caleran-hovered) span,
.caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-end:not(.caleran-hovered) span, .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-days-container .caleran-day.caleran-end:not(.caleran-hovered) span {
  background: var(--wp--preset--color--mauve) !important;
}

.caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-title .caleran-month-switch:hover, .caleran-container .caleran-input .caleran-calendars .caleran-calendar .caleran-title .caleran-year-switch:hover, .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-title .caleran-month-switch:hover, .caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-title .caleran-year-switch:hover {
  color: var(--wp--preset--color--orange);
}

.caleran-prev i::before,
.caleran-next i::before {
  width: 0.66rem;
  height: 0.66rem;
}

/*# sourceMappingURL=style-index.css.map*/