@charset "UTF-8";
/* **************** */
/***** PRODUITS *****/
/* **************** */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Use bourbon mixin instead `@include transform(scale(1.5));`
 */
/**
 * Deprecated
 * Use bourbon mixin instead `@include box-sizing(border-box);`
 */
/**
 * Objects
 */
/**
 * Deprecated
 * Fallback for bourbon equivalent
 */
/* Woocommerce */
/* **************** */
/***** PRODUITS *****/
/* **************** */
.product {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: inline-block;
  margin: 10px 0;
  border: 10px solid #FFFFFF;
  background-color: #FFFFFF;
  flex: 1;
  /* todo mettre le titre sur 5 lignes max */
}
.product .link-product {
  height: 170px;
  display: flex;
}
.product .link-product .image-product {
  max-height: 170px;
  width: auto;
  display: block;
  padding: 0 !important;
  max-width: 100%;
  transition: transform 1s ease;
}
.product .link-product .image-product:hover {
  transform: scale(1.1);
}
.related .product-type {
	position: relative;
}
.related .link-product {
	height: auto;
	display: block;
}
.related .link-product img {
	margin-left: auto !important;
	margin-right: auto !important;
}

@media only screen and (max-width: 575.98px) {
  .product {
    margin: 1rem;
    display: block;
    width: auto;
    background-color: transparent;
    border: none;
    padding: 1rem;
  }
}
.product .image-product {
  margin: auto;
}
.product .title-product {
  color: #000000;
  font-size: 1rem;
  min-height: 85px;
  font-weight: 500;
  padding-bottom: 10px;
  padding-top: 0.5rem;
  word-break: break-word;
}
.product .title-product a {
  text-decoration: none;
  color: #000000;
}
.product .price-product {
  padding: 0;
  display: inline-block;
  align-self: flex-end;
}
.product .price-product .price-ht {
  color: #000000;
  font-size: 1.4rem;
  font-weight: 600;
}
.product .price-product .price-ht sup {
  font-size: 0.8rem;
  padding-left: 5px;
  text-transform: uppercase;
}
.product .price-product .price-ttc {
  color: #696969;
}
.product .price-product .price-ttc sup {
  font-size: 0.8rem;
  padding-left: 5px;
  text-transform: uppercase;
}
.product .actions {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.products.vertical .qty {
  width: 1.631em;
}

.products.horizontal .single-product {
  width: 17rem;
}
.products.horizontal .qty {
  width: 1.631em;
}
.products.horizontal .product_type_simple[disabled] {
  width: 62px;
  border: none;
  cursor: not-allowed;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .products.horizontal .product_type_simple[disabled] {
    width: 50px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .products.horizontal .product_type_simple[disabled] {
    width: 50px;
  }
}

.two-rows {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.two-rows .single-product {
  flex: 4 0 20%;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .two-rows .single-product {
    flex: 3 0 25%;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .two-rows .single-product {
    flex: 3 0 31%;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .two-rows .single-product {
    flex: 4 0 40%;
  }
}
@media only screen and (max-width: 575.98px) {
  .two-rows .single-product {
    flex: auto;
    margin: 1rem 0;
  }
}
.two-rows .single-product .title-product {
  min-height: auto;
}
.two-rows .product_type_simple[disabled] {
  width: 64px;
  border: none;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .two-rows .product_type_simple[disabled] {
    width: 50px;
  }
}

.color-product {
  position: absolute;
  width: auto;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.color-product img {
  height: 28px;
}
.color-product .tooltip-color {
  visibility: hidden;
  text-align: center;
  border-radius: 10px;
  padding: 3px 8px;
  position: absolute;
  z-index: 1;
  font-size: 0.8rem;
  margin-left: 5px;
  margin-top: 3px;
  width: max-content;
}
.color-product .yellow {
  background-color: #FCD42C;
  color: #FFFFFF;
}
.color-product .blue {
  background-color: #3EC2F6;
  color: #FFFFFF;
}
.color-product .magenta {
  background-color: #E52C85;
  color: #FFFFFF;
}
.color-product .black {
  background-color: #000000;
  color: #FFFFFF;
}
.color-product .multi {
  background-color: #000000;
  color: #FFFFFF;
  width: max-content;
}
.color-product:hover .tooltip-color {
  visibility: visible;
}

.product-type {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 32px;
  margin-left: 1px;
  z-index: 10;
}
.product-type .product-label {
  color: #FFFFFF;
  border-radius: 50%;
  padding: 5px 6px;
}
.product-type img {
  height: 24px;
}
.product-type .tooltip-product-type {
  visibility: hidden;
  text-align: center;
  border-radius: 10px;
  padding: 3px 9px;
  position: absolute;
  z-index: 1;
  font-size: 0.8rem;
  margin-left: 30px;
  margin-top: -24px;
  color: #FFFFFF;
}
.product-type .yellow {
  background-color: #FCD42C;
  color: #FFFFFF;
}
.product-type .blue {
  background-color: #0D59B1;
  color: #FFFFFF;
}
.product-type .magenta {
  background-color: #E52C85;
  color: #FFFFFF;
}
.product-type:hover .tooltip-product-type {
  visibility: visible;
}

.added_to_cart {
  display: none;
}

.add_to_cart_button, .product_type_simple {
  text-indent: -99999px;
  position: relative;
  width: 4rem;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .add_to_cart_button, .product_type_simple {
    width: 50px;
  }
}

.shop_table .qty {
  width: 3.631em;
}

.cart-button, .add_to_cart_button, .product_type_simple {
  background-color: #3EC2F6 !important;
  color: transparent !important;
  font-size: 0;
  padding: 0.5rem 0 !important;
  margin-left: 5px;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .cart-button, .add_to_cart_button, .product_type_simple {
    padding: 0 !important;
  }
}
.cart-button:hover, .add_to_cart_button:hover, .product_type_simple:hover {
  background-color: #0D59B1 !important;
}
.cart-button.add_to_cart_button::before, .cart-button.product_type_simple::before, .add_to_cart_button.add_to_cart_button::before, .add_to_cart_button.product_type_simple::before, .product_type_simple.add_to_cart_button::before, .product_type_simple.product_type_simple::before {
  font-family: "Font Awesome 6 pro";
  position: absolute;
  top: 0;
  left: 0;
  text-indent: initial;
  font-size: 28px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  text-align: center;
  color: #FFFFFF !important;
}
.cart-button.add_to_cart_button::before, .add_to_cart_button.add_to_cart_button::before, .product_type_simple.add_to_cart_button::before {
  content: "\f07a";
}

.product_type_simple::before {
  content: "\e0dd";
}

.list-product {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  width: 1040px; /* todo remove à l'intégration finale */
  display: flex;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .list-product {
    width: inherit;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .list-product {
    width: inherit;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .list-product {
    width: inherit;
  }
}
@media only screen and (max-width: 575.98px) {
  .list-product {
    width: auto;
    display: block;
    margin: 1rem 0;
  }
}
.list-product .product {
  width: 100%;
  padding: 15px;
  margin-top: auto;
}
.list-product .actions {
  width: 40%;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .list-product .actions {
    width: 80%;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .list-product .actions {
    width: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  .list-product .actions {
    width: 100% !important;
    margin-top: 1rem;
  }
}
.list-product .link-product {
  padding: 0 3rem;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .list-product .link-product {
    padding: 0 2rem;
    width: 190px;
    margin: auto;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .list-product .link-product {
    padding: 0 2rem;
    width: 190px;
    margin: auto;
  }
}
@media only screen and (max-width: 575.98px) {
  .list-product .link-product {
    padding: 0;
  }
}
.list-product .title-product {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 575.98px) {
  .list-product .title-product {
    min-height: auto !important;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .list-product .title-product {
    min-height: 40px;
  }
}
.list-product .color-product, .list-product .type-product {
  margin-left: 0;
  margin-top: 0;
}
.list-product .infos {
  width: 100%;
  padding-left: 0;
}
.list-product .infos-product {
  margin-right: auto;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .list-product .infos-product {
    max-width: 260px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .list-product .infos-product {
    margin-bottom: 1rem;
  }
}
.list-product .image-product {
  width: 18em;
  display: flex;
  padding: 0 2rem;
}
@media only screen and (max-width: 575.98px) {
  .list-product .image-product {
    margin: auto;
  }
}
.list-product .image-product img {
  width: auto;
  max-height: 170px;
  margin: auto;
}
@media only screen and (max-width: 575.98px) {
  .list-product .image-product img {
    margin: 0;
  }
}
.list-product .product_type_simple[disabled] {
  width: 62px;
  border: none;
  cursor: not-allowed;
}

.row-product {
  display: flex;
}
@media only screen and (max-width: 575.98px) {
  .row-product {
    display: block;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .row-product {
    display: block;
  }
}

.infos-product {
  align-self: center;
}

.description-product-page {
  display: block;
}
/*@media only screen and (max-width: 575.98px) {
  .description-product-page {
    display: none;
  }
}*/

.price-product {
  padding: 7px;
  display: inline-block;
  align-self: flex-end;
  margin: 0 0.5rem;
}
.price-product .price-ht {
  color: #000000;
  font-size: 1.4rem;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .price-product .price-ht {
    font-size: 1rem !important;
  }
}
.price-product .price-ht sup {
  font-size: 0.8rem;
  padding-left: 5px;
}
.price-product .price-ttc {
  color: #696969;
}
.price-product .price-ttc sup {
  font-size: 0.8rem;
  padding-left: 5px;
}

.quantity {
  display: flex;
  background-color: #F4F4F4;
  padding: 0 0.3rem;
}
.quantity .quantity-value {
  background-color: #F4F4F4;
  border: none;
  color: #000000;
  width: 35px;
  font-size: 1.5rem;
  text-align: center;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.quantity .quantity-value::-webkit-outer-spin-button, .quantity .quantity-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity .quantity-value[type=number] {
  -moz-appearance: textfield;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .quantity .quantity-value {
    width: 25px;
    font-size: 1rem;
  }
}
.quantity .quantity-minus, .quantity .quantity-plus {
  height: 20px;
  margin: auto;
  background-color: #696969;
  color: #FFFFFF;
  border: none;
  width: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.quantity .quantity-minus:hover, .quantity .quantity-plus:hover {
  background-color: #E52C85;
}

.cart-button {
  background-color: #3EC2F6;
  text-decoration: none;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 0.9rem;
  padding: 0.8rem;
  text-align: right;
  display: flex;
}
.cart-button:hover {
  background-color: #0D59B1;
}
.cart-button i {
  font-size: 1.5rem;
  margin-top: 6px;
}

/* **************** */
/******* SHOP *******/
/* **************** */
.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}

/* **************** */
/******* PAGE *******/
/* **************** */
#breadcrumbs {
  color: #FFFFFF;
  margin: 1rem 0 1rem 0.5rem;
}
#breadcrumbs span {
  display: none;
}
@media only screen and (max-width: 575.98px) {
  #breadcrumbs {
    font-size: 0.8em;
    padding: 0;
    text-align: center;
    margin: 1rem 0;
  }
}
#breadcrumbs a {
  color: #FFFFFF;
  text-decoration: none;
}

.ref-product {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 27.5rem;
  margin-bottom: 0.5rem;
  height: 105px;
  position: relative;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .ref-product {
    margin-left: 0;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .ref-product {
    margin-left: 0;
  }
}
.ref-product .title {
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 575.98px) {
  .ref-product {
    margin-bottom: 1rem;
    padding: 0;
    font-size: 1.2rem;
    margin-top: 0 !important;
    text-align: center;
    margin-left: 0;
    height: 75px;
  }
}

@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .product-page.product {
    margin: 0 !important;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .product-page.product {
    border: none;
  }
}

.product-page {
  margin-top: 0 !important;
  width: 100%;
  box-shadow: none !important;
}
@media only screen and (max-width: 575.98px) {
  .product-page {
    padding: 0 !important;
    margin: 0 !important;
  }
}
.product-page .first-row {
  display: flex;
  margin-top: 0;
}
@media only screen and (max-width: 575.98px) {
  .product-page .first-row {
    display: block;
    margin-top: 0;
    padding: 0 1rem;
    background-color: #FFFFFF;
  }
}
.product-page .image-product {
  background-color: white;
  margin-left: -10px !important;
  width: 30rem;
  margin-top: -80px !important;
  padding: 2.5rem 0 !important;
  text-align: center;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .product-page .image-product {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .product-page .image-product {
    margin-top: 0 !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-page .image-product {
    width: 100%;
    max-height: initial;
    margin: 0 auto !important;
  }
}
.product-page .image-product .color-product {
  margin-left: 0;
  margin-top: -25px;
  left: 0;
}
@media only screen and (max-width: 575.98px) {
  .product-page .image-product .color-product {
    left: 10px;
  }
}
.product-page .image-product .color-product .tooltip-color {
  margin-left: 5px;
  margin-top: 3px;
}
@media only screen and (max-width: 575.98px) {
  .product-page .image-product .color-product .tooltip-color {
    margin-top: 0;
  }
}
.product-page .image-product .product-type {
  margin-top: 10px;
  margin-left: 0;
  left: 0;
}
@media only screen and (max-width: 575.98px) {
  .product-page .image-product .product-type {
    left: 10px;
  }
}
.product-page .image-product .product-type .tooltip-color {
  margin-left: 30px !important;
  margin-top: -27px !important;
  transition: all 0.3ms ease;
}
.product-page .image-product .product-type .tooltip-product-type {
  visibility: hidden;
  text-align: center;
  border-radius: 10px;
  padding: 3px 9px;
  position: absolute;
  z-index: 1;
  font-size: 0.8rem;
  margin-left: 20px;
  margin-top: -24px;
  color: #FFFFFF;
}
.product-page .image-product .product-type:hover .tooltip-product-type {
  visibility: visible;
}
.product-page .image-product img {
  max-height: 230px;
  max-width: 100%;
}
@media only screen and (max-width: 575.98px) {
  .product-page .image-product img {
    max-width: 100%;
    max-height: 200px;
  }
}
.product-page .title-product {
  color: #FFFFFF;
  min-height: 0;
}
@media only screen and (max-width: 575.98px) {
  .product-page .title-product {
    color: #000000;
    min-height: initial;
    padding-bottom: 0;
  }
}
.product-page .infos-product {
  padding: 0 1rem;
  width: 70rem !important;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .product-page .infos-product {
    padding: 0 0 0 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-page .infos-product {
    width: 100% !important;
    padding: 0;
  }
}
.product-page .infos-complement {
  margin: 1.5rem 0;
  display: flex;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .product-page .infos-complement {
    margin: 1.5rem 0;
    display: inline-grid;
    width: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-page .infos-complement {
    display: grid;
    margin: 1rem 0;
  }
}
.product-page .infos-complement span {
  margin-right: auto;
}
@media only screen and (max-width: 575.98px) {
  .product-page .infos-complement span {
    margin-bottom: 0.5rem;
  }
}
.product-page .promotion {
  padding: 1rem;
  background-color: #696969;
  color: #FFFFFF;
  margin: 1rem 0 2rem;
  text-align: center;
}
@media only screen and (max-width: 575.98px) {
  .product-page .promotion {
    width: 100% !important;
    padding: 1rem 0;
    margin: 1rem 0;
  }
}
.product-page .actions-product {
  display: flex;
  margin-top: 1rem;
}
.product-page .actions-product .price-product {
  margin-left: auto;
}
@media only screen and (max-width: 575.98px) {
  .product-page .actions-product .price-product {
    float: left;
  }
}
.product-page .actions-product .quantity {
  margin: 0 1rem !important;
  height: 60px;
}
@media only screen and (max-width: 575.98px) {
  .product-page .actions-product .quantity {
    margin: 0 0.5rem !important;
  }
}
.product-page .actions-product form.cart {
  margin-bottom: 0 !important;
  display: flex;
  margin-left: auto;
}
@media only screen and (max-width: 575.98px) {
  .product-page .actions-product form.cart {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-page .actions-product form.cart .quantity {
    margin-left: 0 !important;
  }
}
.product-page .actions-product form.cart .add_to_cart_button, .product-page .actions-product form.cart .product_type_simple {
  font-size: 0.9rem !important;
  text-indent: 0;
  width: 160px;
  height: 60px;
  text-transform: uppercase;
  padding-right: 4rem !important;
  text-align: right;
  color: #FFFFFF !important;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .product-page .actions-product form.cart .add_to_cart_button, .product-page .actions-product form.cart .product_type_simple {
    padding-right: 2rem !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-page .actions-product form.cart .add_to_cart_button, .product-page .actions-product form.cart .product_type_simple {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    padding-right: 1rem !important;
  }
  .product-page .actions-product form.cart .add_to_cart_button::before, .product-page .actions-product form.cart .product_type_simple::before {
    right: 0;
  }
}
.product-page .actions-product form.cart .add_to_cart_button::before, .product-page .actions-product form.cart .product_type_simple::before {
  left: 45px;
}
@media only screen and (max-width: 575.98px) {
  .product-page .actions-product form.cart .add_to_cart_button::before, .product-page .actions-product form.cart .product_type_simple::before {
    display: none;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .product-page .actions-product form.cart .add_to_cart_button::before, .product-page .actions-product form.cart .product_type_simple::before {
    display: none;
  }
}

.description-product {
  margin: 3rem 0;
}
@media only screen and (max-width: 575.98px) {
  .description-product {
    padding: 0 1rem;
    margin: 1rem 0;
  }
}

@media only screen and (max-width: 575.98px) {
  .woocommerce-tabs.wc-tabs-wrapper {
    padding: 0 1rem;
  }
}

.tabs {
  display: flex;
  margin-bottom: 0 !important;
  overflow: initial !important;
  padding: 0 !important;
}
@media only screen and (max-width: 575.98px) {
  .tabs {
    display: none;
  }
}
.tabs li {
  background-color: #FFFFFF !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.tabs li::before, .tabs li::after {
  display: none !important;
}
.tabs .tab-button {
  border: 2px solid #F4F4F4 !important;
  padding: 0 2rem !important;
  cursor: pointer;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 575.98px) {
  .tabs .tab-button {
    padding: 0 1rem !important;
  }
}
.tabs .tab-button:hover, .tabs .tab-button.active {
  color: #FFFFFF !important;
  background-color: #3EC2F6 !important;
  border-top: 2px solid #3EC2F6 !important;
  border-right: transparent !important;
  border-left: transparent !important;
  border-bottom: 2px solid #F4F4F4 !important;
}
.tabs .tab-button i {
  background-color: #0D59B1;
  color: #FFFFFF;
  padding: 0.5rem;
  border-radius: 50%;
}

.tab-container {
  padding: 1rem 2rem !important;
  background-color: #F4F4F4 !important;
  margin: 3rem 0 !important;
}
@media only screen and (max-width: 575.98px) {
  .tab-container {
    display: block !important;
  }
}
.tab-container li {
  background-color: #E8E8E8;
  padding: 1.5rem;
}
.tab-container h2 {
  margin-top: 0;
}
.tab-container .colonne {
  display: inline-block;
  width: 33%;
  vertical-align: top;
}
@media only screen and (max-width: 575.98px) {
  .tab-container .colonne {
    display: inline-block;
    width: 49%;
  }
}
@media only screen and (max-width: 575.98px) {
  .tab-container .colonne {
    display: block;
    width: 100%;
    font-size: 15px;
  }
}
.tab-container .colonne div {
  margin: 1rem 0 0;
}
@media only screen and (max-width: 575.98px) {
  .tab-container .colonne div {
    margin: 0.5rem 0 0;
  }
}

ul.tabs::before {
  border: none !important;
}

/*# sourceMappingURL=product.css.map */
