/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
div#recherches {
  display: flex;
  flex-wrap: wrap;
  align-items: unset;
  justify-content: space-between;
}
#recherches .my-vehicles-list {
  text-align: center;
  padding: 1px;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 20px;
}
#recherches .my-vehicles-list p.titre{display: inline;color: #fff;}
div.blocs {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
div.recherche{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}

#vehicle-container:empty {
  display: none!important;
}
#my-vehicles-list{}
#my-vehicles-list ul.vehicle-list{margin: 20px 0;}
#my-vehicles-list ul.vehicle-list>li.bubble{margin: 10px 0;}
#my-vehicles-list ul.vehicle-list>li.bubble>.bubble-content{
  background-color: #fafafa;
  border-radius: 0 200px 200px 200px;
  padding: 20px 50px;
  border: 1px solid #ddd;
}
#my-vehicles-list li.bubble label{
  color: #333;
  display: block;
  text-align: left;
  margin: 5px 0 5px 0;
  font-weight: bold;
}
#my-vehicles-list li.bubble input{
  color: #333;
  display: block;
  width: 100%;
  line-height: 30px;
  background-color: #fafafa;
  margin-bottom: 10px;
}
#my-vehicles-list li.bubble input.veh_name{
  border: none;
  background-color: #fff;
  border-radius: 0 0px 0px 0px;
  padding: 5px 10px;
}
#my-vehicles-list li.bubble input.veh_desc{cursor: default;border: none;}
#my-vehicles-list ul.actions{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#my-vehicles-list ul.actions li{

}
#my-vehicles-list ul.actions li a{color: #333}
#my-temp-vehicles-list ul.actions li a.change-name i{color: #0056ff}

#related-products{padding: 20px 0;}
#related-products>div.product{}
#related-products > a {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 980px) {
div.blocs{
  flex-wrap: wrap;
}
}