.cw_positionned_element_height_extends > * {
  height: 100%;
}
.cw_positionned_element_width_extends > * {
  height: 100%;
}
li {
  display: flex;
  position: relative;
}

li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.7rem;
  left: -14px;
  border-radius: 50%;
  background: black;
}
.popup {
  position:absolute;
  inset:0px;
  background-color:#333333BB;
  overflow:hidden;
  height:100vh;
  width:100vw;
}
.CwCalendar {
  line-height: normal;
  padding: 6px;
}

.CwCalendar .header {
  width: 100%;
  font-size: 26px;
  padding-bottom: 5px;
}

.CwCalendar th {
  padding: 5px;
  font-weight: 700;
}

.CwCalendar .month-other {
  color: gray;
}
.cw_carrousel .slider {
  display: none;
}
.cw_carrousel .slide-container {
  position: relative;
  margin: auto;
}
.cw_carrousel .prev,.cw_carrousel .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  border: 3px solid rgba(255,255,255,1);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  background-color: rgba(0,0,0,0.7);
  transition: background-color 0.6s ease;
  transition: border 0.2s ease;
}
.cw_carrousel .prev{
  left: 15px;
}
.cw_carrousel .next {
  right: 15px;
}
.cw_carrousel .prev:hover, .cw_carrousel .next:hover {
  border: 3px solid rgba(0,0,0,1);
  background-color: rgba(0,0,0,1);
  transition: background-color 0.6s ease;
  transition: border 0.2s ease;
}
.cw_carrousel .slide-text {
  position: absolute;
  color: #ffffff;
  font-size: 15px;
  padding: 15px;
  bottom: 15px;
  width: 100%;
  text-align: center;
}
.cw_carrousel .slide-img {
  object-fit: cover;
  object-position: center;
 }
.cw_carrousel .slide-dot {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}
.cw_carrousel .dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: rgba(100,100,100,0.8);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.cw_carrousel .active, .dot:hover {
  background-color: rgba(0,0,0,0.8);
}
.cw_carrousel .fade {
  animation-name: cw_carrousel_fade;
  animation-duration: 1s;
}
@keyframes cw_carrousel_fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}