/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: A lightweight and minimalist WordPress theme for Elementor page builder.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 2.8.1.1728401261
Updated: 2024-10-08 15:27:41

*/

/* Curseur Devis */ 
#slider {
    all: unset !important;
    appearance: none !important;
    width: 100% !important;
    height: 17px !important;
    background: #2f4f4f !important;
    outline: none !important;
    border-radius: 50px !important;
    margin-bottom: 1rem !important;
  }
  
  #slider::-webkit-slider-thumb {
    appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: #d15e41 !important;
    cursor: pointer;
  }
  
  #slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
  }
  
  /* Marqueurs */
  .datalist-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #2F4F4F;
    margin-top: 10px;
    width: 100%;
  }
  
  .range-labels {
    display: flex !important;
    justify-content: space-between !important;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 1rem;
  }
  


  button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background-color: #2f4f4f;
    color: #ffffff;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    border: none;
    box-sizing: border-box;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
  }
  
  button > * {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    font-weight: 500;
  }
  
  button:hover {
    background-color: #4a6769;
  }

button:active, button.active {
    background-color: #d25f43 !important;
    border-color: #d25f43 !important;
}

  /* * TABS **/
  .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tabs button {
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
}

.tabs button.active {
    background-color: #007bff;
    color: white;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 1rem;
    margin-top: 20px;
    background-color: #eee;
    border-radius: 8px;
}

.product-card {
    border: 2px solid #2f4f4f;
    background-color: #2F4F4F;
    padding: 20px;
    width: 250px;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 1rem;
    border-radius: 10px;
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}


.form-inputs > input{
    border-radius: 8px;
}