/* Barre de mois */
.cf-months {
    display: flex;
    gap: clamp(20px,1.736vw,25px);
    
  }
  .cf-month-tab {
    background: none!important;
	border: none!important;
	color: #AECDF3!important;
  }
  /* .cf-month-tab:hover {
    color: #596B95;
  } */
  .cf-month-tab.active {
    color: #596B95!important;

  }
  
  /* Panneaux de jours */
  .cf-days-panel {
    display: none;
  }
  .cf-days-panel.active {
    display: block;
  }
  
  /* Grille de cartes */
  .cf-days-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  /* Carte journée */
  .cf-day-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 9px 5px;
    text-align: center;
    min-width: 90px;
  }
  .cf-day-date {
    font-weight: bold;
    color: #596B95;
    font-weight: 600;
  }
  .cf-day-dur svg , .cf-day-city svg {
    /* width: clamp(12px,0.972vw,14px);
    height: clamp(12px,0.972vw,14px); */
    width: 14px;
    height: 14px;
  }

  .cf-day-date > span {
    display: block;
    font-family: 'Inter regular';
  }

  .cf-day-date > span.cf-day-weekday {
    font-size: 14px;
  }

  .cf-day-date > span.cf-day-number {
    font-size: 23px;
    margin-bottom: 4px;
  }

  .cf-day-weekday{
    text-transform: capitalize;
  }
  .cf-date-next{
    text-transform: uppercase;
    color: #596B95;
  }
  .cf-day-number{
    color: #596B95;
    font-size: 50px;
  }
  body hr.day-sep{
    border: none;
    height: 1px;
    background-color: var(--e-global-color-secondary );
  }
  .cf-day-dur,
  .cf-day-city {
    font-size: 14px;
    color: #596B95;
    margin-top: 0.25rem;
    font-family: 'Inter light';
    font-style: italic;
    position: relative;
    text-align: left;
  }

  .cf-day-dur::before,
  .cf-day-city::before {
    content: none;
    position: absolute;
    width: 6px;
    height: 6px;
    left: 0;
    margin-top: 4px;
  }

  .cf-day-dur::before {
    background: url(../images/clock-icon.svg) no-repeat center;
  }
  .cf-day-city::before {
    background: url(../images/position-icon.svg) no-repeat center;
  }

  .cf-day-city {
    text-transform: uppercase;
  }
  
  .cf-card-meta {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-sand);
    margin: 0 20px;
    gap: 5px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cf-card-meta span {
    border: 2px solid #4F71BF;
    color: #4F71BF;
    border-radius: 50px;
    padding: 4px 6px;
    text-transform: uppercase;
    display: inline-block;
    font-family: 'Inter semibold';
  }

  .cf-calendar {
    margin-top: clamp(5px,1.597vw,23px);
    padding: 10px;
  }

  body .cf-calendar .cf-month-tab:focus-visible  {
    outline-color: transparent;
  }
  body .cf-calendar .cf-month-tab , body .cf-calendar .cf-month-tab.active {
    font-family: 'Inter semibold';
  }
  body .cf-calendar .cf-month-tab {
    padding: 0;
    font-size: 14px;
  }

  body .cf-calendar {
    position: relative;
  }

  body .cf-calendar .slick-arrow {
    position: absolute;
    top: calc(50%);
    z-index: 10;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
  }

  body .cf-calendar .slick-arrow:first-child {
    left: -15px;
  }

  body .cf-calendar .slick-arrow:last-child {
    right: -15px;
  }

  .cf-days-container {
    margin-top: clamp(25px,2.083vw,30px);
  }

  p.no-session {
    font-family: 'Inter light';
    font-size: clamp(12px,0.972vw, 14px);
    color: var(--dark);
    margin-top: 15px;
  }

  @media screen and (min-width:576px) {
    .cf-months {
      overflow-x: auto;
    }

    .cf-calendar {
      padding:20px clamp(10px,2.083vw,30px) 20px 20px
    }
    
  }

  @media screen and (min-width:768px) {
    .cf-calendar .cf-month-tab {
      margin: 0 7px;
    }
    body .cf-calendar .slick-arrow {
      display: none !important;
    }

    body .cf-calendar .cf-month-tab {
      font-family: "Inter medium";
    }
  
    body .cf-calendar .cf-month-tab.active {
      font-family: 'Inter bold';
    }
  }

  @media screen and (min-width:1024px) {
    .cf-card-meta {
      
      justify-content: flex-start;
    }
    
  }

