#product #wrapper{
  background: #F5F5F5;
}

.product__grid {
    width  : 100%;
    margin : 0 auto;
}

/********************
	Part - Product Images
********************/
.product__images__wrapper {
    position : relative;
    padding  : 20px 15px;
}
.product-cover img {
    width : 100%;
    height: 100%;
}

/********************
	Part - Product flags
********************/
.product__images__wrapper .product-flags {
    position : absolute;
    top      : 0;
    right    : 0;
    z-index  : 5;
}

/********************
	Part - Product cover
********************/
.product-cover {
  position : relative;
  padding: 40px 40px;
  max-width: 500px;
  margin: auto;
  display: flex;
  align-items: center;
}

.swiper-product-cover-button{
  position: absolute;
  z-index: 2;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: none;
  background: transparent;
  transition: 0.3s ease;
}

.swiper-product-cover-button:hover{
  background: var(--btn-primary-bg-color--is-hover);
}

.swiper-product-cover-button path{
  transition: 0.3s ease;
}

.swiper-product-cover-button:hover path{
  stroke: white;
}

.swiper-product-cover-button:active{
  background: #052b16;
  outline: none;
}

.swiper-product-cover-button:focus{
  outline: none;
}

.swiper-product-cover-button-prev{
  left: 0;
}

.swiper-product-cover-button-prev svg{
  position: relative;
  right: 1px;
}

.swiper-product-cover-button-next{
  right: 0;
}

.swiper-product-cover-button-next svg{
  position: relative;
  left: 1px;
}

/********************
	Part - Product thumbs Images
********************/
.product__thumbnails{
  margin-top: 5px;
}
.product__thumbnails:not(.product__thumbnails__slider) {
    display  : grid;
    grid-gap : 15px;
    width: 100%;
}

/*.product__thumbnails:not(.product__thumbnails__slider) .swiper-wrapper{*/
/*  display  : grid;*/
/*  width: 100%;*/
/*  grid-template-columns: repeat(5,90px);*/
/*  grid-gap: 5px;*/
/*}*/

.images-container .thumb-container {
    text-align : center;
    background : white;
}

.product__thumbnails .thumb {
    border    : 2px solid transparent;
    cursor    : pointer;
    margin    : 0 auto;
    padding   : 5px;
    max-width: 86px;
    width: 86px;
    min-width: 86px;
}

.product__thumbnails .swiper-slide-thumb-active .thumb {
    border : 2px solid var(--color-primary);
}

/********************
	Part - Product description short
********************/
#product-description-short {
    color : var(--color-grey-font-default);
}

/********************
	Part - Product information
********************/
.product-information {
    font-size : var(--font-size-300);
    color     : var(--color-grey-font-default)
}

.product-information .manufacturer-logo {
    height : 35px
}

.product-information .product-description img {
    max-width : 100%;
    height    : auto
}

.product-description{
  font-size: 16px;
  line-height: 1.6;
}

.product-description h2{
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 700;
}

/********************
	Part - Product availability
********************/
#product-availability {
  margin-top  : 0;
  display     : inline-block;
  font-weight : 700;
  width: 100%;
  margin-left: 0;
}

#product-availability .material-icons {
    line-height : inherit;
}

#product-availability .product-available {
    color : #4cbb6c;
}

#product-availability .product-last-items,
#product-availability .product-unavailable {
    color : #ff9a52;
}

/********************
	Part - Product details
********************/

.product-reference .label{
  margin-bottom: 0;
}

.product-reference .label,
.product-features .name{
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 700;
}

.product-reference,
.product-features .product-features__item{
  padding: 12px 0;
  max-width: 570px;
}

.product-features .product-features__item{
  border-top: 1px solid rgba(5, 88, 45, 0.2)
}


/********************
	Part - Product features
********************/

.product-features > dl.data-sheet {
    display     : flex;
    flex-wrap   : wrap;
    align-items : stretch
}

.product-features > dl.data-sheet dd.value,
.product-features > dl.data-sheet dt.name {
    flex           : 1 0 40%;
    font-weight    : 400;
    background     : var(--color-grey-default);
    padding        : .625rem;
    margin-right   : .625rem;
    min-height     : 2.5rem;
    word-break     : normal;
    text-transform : capitalize;
    margin-bottom  : .5rem
}

.product-features > dl.data-sheet dd.value:nth-of-type(2n),
.product-features > dl.data-sheet dt.name:nth-of-type(2n) {
    background : #f6f6f6
}

/********************
	Part - Product variants
********************/
.product-variants > .product-variants-item {
    margin : 1.25rem 0
}

.product-variants > .product-variants-item select {
    background-color : #fff;
    width            : auto;
    padding-right    : 1.875rem;
    box-shadow       : 2px 2px 4px 0 rgba(0, 0, 0, .2)
}

.product-variants > .product-variants-item ul li {
    margin-right : .625rem
}

.product-variants > .product-variants-item .color {
    margin-left : 0;
    margin-top  : 0
}

/********************
	Part - Product price
********************/
.product__main-infos{
  padding: 15px;
}

.product__main-infos .product-price__current-price {
    display     : inline-block;
    color       : var(--color-primary);
    font-size   : 33px;
    line-height : normal;
    font-weight : 700;
}

/********************
	Part - Product unit price
********************/
.product-unit-price {
    font-size     : .8125rem;
    margin-bottom : 0
}

/********************
	Part - Product discount
********************/

.product-discount .discount {
    background     : var(--color-secondary);
    color          : var(--color-white-default);
    font-weight    : 600;
    padding        : .3125rem .625rem;
    font-size      : var(--font-size-300);
    text-transform : uppercase;
    display        : inline-block
}

.product-discount .regular-price {
  text-decoration: line-through;
}

.product-discount .discount-percentage {
  position: absolute;
  z-index: 2;
  top: 35px;
  right: 15px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 3em;
  height: 3em;
}

.images-container .discount-percentage-container {
  position: absolute;
  z-index: 3;
  left: 10px;
  top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  background: var(--color-secondary);
  color: var(--color-white-default);
  border-radius: 50%;
  width: calc(40px + (45 - 40) * ((100vw - 320px) / (1920 - 320)));
  height: calc(40px + (45 - 40) * ((100vw - 320px) / (1920 - 320)));
  padding: 3px 7px;
}

/********************
	Part - Product thumb-mask (pack product)
********************/
.thumb-mask > .mask {
    position : relative;
    width    : 3.438rem;
    height   : 3.438rem;
    overflow : hidden;
    border   : 1px solid var(--color-grey-default);
    margin   : .625rem 0
}

.thumb-mask > .mask img {
    width  : 55px;
    height : 55px
}

/********************
	Part - Product block reassurance
********************/

#block-reassurance {
    margin-top : 1rem
}

#block-reassurance ul {
    display         : flex;
    flex-direction  : column;
    align-items     : center;
    justify-content : space-between;
}

#block-reassurance img {
    width        : 1.563rem;
    margin-right : .625rem
}

#block-reassurance li .block-reassurance-item {
    padding : 1rem 1.5rem
}

#product #block-reassurance span {
    font-weight : 700
}

/********************
Product more info
********************/

.product__more-infos ul.nav-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: none;
  margin-bottom: 40px;
  position: relative;
}

.product__more-infos .nav-item .nav-link {
  transition: all 0.35s ease-in-out;
  opacity: 0.7;
  border: none;
  color: var(--color-primary);
  font-family: var(--typo-secondary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  text-transform: uppercase;
  padding: 0;
  position: relative;
}

.product__more-infos .nav-item .nav-link.active {
  color: var(--color-primary);
  transition: all 0.35s ease-in-out;
  opacity: 1;
}

.product__more-infos .nav-item .nav-link:hover {
  color: var(--color-primary);

  opacity: 0.85;
}

.product__more-infos .nav-item .nav-link.active::after{
  background: var(--color-secondary)
}

.nav-tabs .nav-item + .nav-item{
  margin-left: 0;
}

.nav-indicator {
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 4px;
  background-color: var(--color-secondary);
  transition: left 0.3s ease, width 0.3s ease;
  width: 0;
}

.product__more-infos .tab-content {
  background: #fff;
  border-radius: 10px;
}

.tab-subtitle{
  color: var(--color-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 5px;
  display: block;
}

.product__thumbnails .swiper-slide{
  height: auto!important;
  width: auto!important;
  margin-right: 10px;
}

.images-container.thumb--is-on-left .product__thumbnails:not(.swiper) .swiper-wrapper{
    flex-direction: column;
}

.product-thumbnails-slider__btns{
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-thumbnails-slider__btn{
    padding: 5px;
    margin: 5px;
    display: flex;
    align-items: center;
}

.images-container:not(.thumb--is-on-left) .product-thumbnails-button-prev{
    transform : rotate(180deg);
}

.images-container.thumb--is-on-left .product-thumbnails-button-prev{
    transform : rotate(-90deg);
}
.images-container.thumb--is-on-left .product-thumbnails-button-next{
    transform : rotate(90deg);
}

.slider-imgs-product__wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.images-container.thumb--is-on-left .product__thumbnails{
    padding: 2px 0;
}

.images-container .product__thumbnails{
  overflow: hidden;
  width: 100%;
}

.product__title{
  color: var(--color-primary);
  font-family: var(--typo-secondary);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
}

.product-price-and-add-to-cart{
  display: flex;
  flex-direction: column;
  margin-bottom: 55px;
}

.product-price-and-add-to-cart .product-price__container{
  display: flex;
  flex-direction: column;
}

.product__more-infos__wrapper{
  background: white;
  padding : 40px 20px 60px;
}

.product__description-short{
  color: #292929;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.description-nimp15 p{
  margin-bottom: 10px;
}

.product__more-infos .nav-tabs:after{
  content: none;
}

.product-reassurances{
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #D2D8DF;
  padding-top: 25px;
}

.product-reassurances>*:not(:first-child){
  margin-top: 25px;
}

.product-reassurances .reassurance{
  margin-bottom: 0;
}

.product-infos-with-cover{
  background: white;
  padding: 15px 5px;
}

.product-sav{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.product-sav__content{
  display: flex;
  flex-direction: column;
}

.product-sav__phone{
  color: var(--color-primary);
  font-family: var(--typo-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin-left: 10px;
}

.product-sav__text{
  color: #292929;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-left: 10px;
}

.icon-forklift-cart{
  width: 28px;
  height: 25px;
}

.product-information .product-price{
  position: relative;
}

.product-information .product-price .product-unit-price{
  position: absolute;
  bottom: -10px;
  font-weight: 600;
}

.product-information .product-prices {
  padding        : 0;
  display        : flex;
  flex-direction : column;
  align-items    : flex-start;
  margin-bottom: 20px;
}

.product-information .product-price__current-price{
  height: 50px;
  display: flex;
  align-items: center;
}

.btn-see-all-type{
  background: #676767;
  color: white;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 12px 15px;
  display: inline-block;
  transition: 0.3s ease;
  margin-left: 15px;
}

.btn-see-all-type svg{
  margin-right: 15px;
}

.btn-see-all-type:hover{
  background: #515151;
  color: white;
}

.btn-see-all-type:focus{
  background: #676767;
  text-decoration: none;
  color: white;
}

.btn-see-all-type:active{
  background: #3a3a3a;
  text-decoration: none;
}

.product-custom{
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.product-custom__dp{
  background: #E4E4E4;
  padding: 25px 15px;
  width: 100%;
}

.product-custom__summary{
  background: var(--color-primary);
  padding: 25px 15px;
  color: white;
  width: 100%;
  position: relative;
}

.product-custom__summary__title{
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.product-custom__summary__item:not(:last-child){
  margin-bottom: 10px;
}

.product-custom__summary__label{
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.product-custom .dp_group {
  border: none !important;
  padding: 0!important;
  margin-bottom: 0!important;
}

.product-custom .dp_field_container.dp_weight{
  display: none;
}

.product-custom .dp_container{
  margin-bottom: 0!important;
}

.product-custom .dp_field_container{
  display: flex;
  flex-wrap: wrap;
}

.product-custom .dp_field_container .alert{
  width: 100%;
  padding: 5px;
}

.product-custom .attribute_label{
  width: 60%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #292929;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
}

.product-custom .dp_details{
  color: #979797;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.dp_input_container{
  display: flex;
  align-items: center;
  width: 40%;
}

.product-custom .ui-spinner,
.product-custom .ui-spinner>input{
  width: 100px !important;
}

.product-custom .ui-spinner{
  border: none!important;
}

.dp_input_container .ui-spinner:focus-within{
  outline: 1px solid #454545 !important;
}

.product-custom .form-control.ui-spinner-input,
.product-custom .dp_input_container  select.form-control{
  height: 30px!important;
  padding: 2px 5px;
  border: 1px solid #CFCFCF;
  color: #292929;
  font-size: 15px;
}

.dp_unit_symbol{
  color: #292929;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 10px;
}

.custom-dynamic-loading .background-loading{
  display: flex;
}

.background-loading{
  display: none;
  background: rgba(211,211,211,0.5);
  opacity: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.background-loading .loader-custom{
  content: "";
  width: 25px;
  height: 25px;
  border: 3px solid white;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.product-infos-with-cover .bubble-round {
  width: 55px;
  height: 55px;
}

.product-infos-with-cover .bubble-round .bubble-type{
  font-size: 9px;
}

.product-infos-with-cover .bubble-hexagonal {
  width: 60px;
  height: 70px;
  font-size: 9px;
}

.product-infos-with-cover .bubble-hexagonal .icon-max-weight {
  width: 17px;
  height: 20px;
}

.product-infos-with-cover .bubble-hexagonal [class*=icon-measure] {
  width: 20px;
  height: 20px;
}

.product-minimal-quantity{
  margin-left: 0;
  position: absolute;
  bottom: -30px;
}

.input-with-tooltip{
  display: flex;
  position: relative;
}

.input-with-tooltip .tooltip-icon{
  display: none;
  width: 17px;
  height: 17px;
  background: #999;
  color: white;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border-radius: 100%;
  cursor: help;
  line-height: 1;
  text-align: center;
  font-family: 'serif';
}

.input-with-tooltip .tooltip-text{
  line-height: 1.1;
  font-size: 11px;
}

[data-name="nimp"] .dp_input_container{
  align-items: flex-start;
}

.disabled-custom{
  cursor: not-allowed;
  opacity: 0.55;
}

.disabled-custom *{
  pointer-events: none;
}

@media (any-hover: hover){
  [data-name="nimp"] .attribute_label{
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .input-with-tooltip .tooltip-icon{
    display: flex;
    margin-left: 5px;
    margin-right: 5px;
  }
  .input-with-tooltip .tooltip-text{
    display: none;
    position: absolute;
    color: #fff;
    padding: 0.4rem 0.6rem;
    background: rgba(0, 0, 0, 0.8);
    width: 320px;
    z-index: 10;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 0.25rem;
    left: 50%;
    top: calc(100% + 12px);
    transform: translateX(-50%);
    white-space: normal;
  }
  .tooltip-icon:hover + .tooltip-text {
    display: block;
  }

  .input-with-tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
  }
}
