.elementor-1969 .elementor-element.elementor-element-49ab1f5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1969 .elementor-element.elementor-element-738dc12, .elementor-1969 .elementor-element.elementor-element-738dc12 .elementor-text-editor *:not(.elementor-drop-cap-letter){color:#FFFFFF;}.elementor-1969 .elementor-element.elementor-element-378708a > .elementor-widget-container{border-style:solid;border-width:0px 0px 2px 0px;border-color:#FFFFFF;}@media(max-width:767px){.elementor-1969 .elementor-element.elementor-element-b88e9e8 > .elementor-widget-container{padding:0px 20px 0px 20px;}}/* Start custom CSS for html, class: .elementor-element-b88e9e8 *//* Pricing Container */
.pricing-container {
  font-family: 'Arial', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #1d1b33; /* Dark background */
  color: #ffffff; /* White text */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Toggle Switch */
.pricing-toggle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.annual-savings {
  background-color: #FFD700;
  color: #000;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 1.2em;
  font-weight: bold;
  white-space: nowrap;
  position: relative;
}

.annual-savings::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 25%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #FFD700;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4f4c72; /* Darker purple for the toggle */
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3; /* Light blue when active */
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Plans Container and Flexbox Layout */
.plans-container, .additional-plans {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.plan {
  background-color: #2c2a45; /* Darker purple for plan background */
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan:hover {
  transform: translateY(-5px);
}

/* Total Savings Tag */
.total-savings {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4CAF50; /* Bright green for savings */
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

/* Plan Titles and Descriptions */
.plan h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff; /* White for the plan titles */
  text-align: center;
}

.description {
  font-size: 14px;
  color: #E91E63; /* Light gray for the description */
  margin-bottom: 20px;
  text-align: center;
}

/* Price Container */
.price-container {
  text-align: center;
  margin-bottom: 20px;
}

/* Frais Initiaux and Frais Mensuels Styling */
.frais-initiaux {
  font-size: 18px;
  font-weight: bold;
  color: #2ecc71; /* Green for "Frais initiaux" */
  margin-bottom: 10px;
}

.frais-initiaux strong {
  font-weight: bold;
}

.frais-mensuels {
  font-size: 18px;
  font-weight: bold;
  color: #2ecc71; /* Green for "Frais mensuels" */
  margin-bottom: 10px;
}

.frais-mensuels strong {
  font-weight: bold;
}

/* Main Price Styling */
.price {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff; /* Main price in white */
  margin-bottom: 20px;
}

.price span {
  font-size: 16px;
  font-weight: normal;
  color: #2ecc71; /* Green for the unit */
}

/* Price Details (for annual pricing) */
.price-details {
  color: #ffffff; /* White text for prices between frais mensuels and frais initiaux */
  font-size: 14px; /* Smaller font size */
  font-style: italic; /* Italic text */
}

.total-price {
  font-size: 18px;
  font-weight: bold;
  color: #2ecc71; /* Green for total price */
}

/* Add to Cart Button */
.add-to-cart {
  background-color: #e91e63; /* Bright pink for buttons */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-bottom: 20px;
  transition: background-color 0.3s ease-in-out;
}

.add-to-cart:hover {
  background-color: #c2185b; /* Darker pink on hover */
}

/* Features List */
.features {
  list-style-type: none;
  padding: 0;
}

.features li {
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
  color: #d1d1e0; /* Light gray for feature list */
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50; /* Green checkmark */
}

/* Plan Specific Borders */
.promo-pack {
  border: 2px solid #e74c3c; /* Red border for promo pack */
}

.restaurant-pack {
  border: 2px solid #f39c12; /* Orange border for restaurant pack */
}

.hotel-pack {
  border: 2px solid #3498db; /* Blue border for hotel pack */
}

/* Additional Features Section */
.additional-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

.feature {
  display: flex;
  align-items: center;
  margin: 10px;
  color: #ffffff; /* White text for additional features */
  font-size: 14px;
}

.feature img {
  margin-right: 10px;
  width: 30px;
  height: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .plans-container, .additional-plans {
    flex-direction: column;
    align-items: center;
  }
  
  .plan {
    min-width: 100%;
  }
  
  .additional-features {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .pricing-toggle {
    flex-wrap: nowrap;
  }

  .annual-savings {
    margin-left: 10px;
  }

  .annual-savings::before {
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #FFD700;
    border-left: none;
  }
}

/* For very small screens */
@media (max-width: 350px) {
  .annual-savings {
    font-size: 0.8em;
    padding:3px 6px;
}
}/* End custom CSS */