.lpg-pipette-offerte {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.lpg-pipette-offerte__icon {
  flex: 0 0 44px;
  color: #E9BB4C;
  margin-top: 4px;
}

.lpg-pipette-offerte__icon svg {
  width: 38px;
  height: 60px;
  display: block;
}

.lpg-pipette-offerte__content {
  flex: 1;
  min-width: 0;
}

.lpg-pipette-offerte__title p {
  font-size: 25px;
  font-family: var(--police-balthazar-regular);
  font-size: clamp(18px, calc(18px + ((25 - 18) * ((100vw - 400px) / (1500 - 400)))), 25px);
}

.lpg-pipette-offerte__text p {
  margin: 10px 0;
  font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
  color: #999;
}

.lpg-pipette-offerte__checkline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.lpg-pipette-offerte__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lpg-pipette-offerte__fakebox {
  width: 18px;
  height: 18px;
  border: 1.5px solid #E9BB4C;
  background: #fff;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
}

.lpg-pipette-offerte.is-checked .lpg-pipette-offerte__fakebox {
  background-color: #E9BB4C;
  color: white;
}

.lpg-pipette-offerte.is-checked .lpg-pipette-offerte__fakebox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lpg-pipette-offerte__label {
  font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
  line-height: 1.4;
  color: #E9BB4C;
  font-weight: 600;
}

.lpg-pipette-offerte__note {
  margin-top: 10px;
  padding: 10px 15px;
  font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
  position: relative;
  border-radius: 2px;
  background: #FFF9EB;
  display: flex;
  gap: 10px;
}

.lpg-pipette-offerte__note p {
  font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
}

.lpg-pipette-offerte__note.hidden {
  display: none;
}

.lpg-pipette-offerte__note svg {
  min-width: 44px;
}

.lpg-pipette-offerte.is-loading {
  opacity: 0.65;
  pointer-events: none;
}


@media screen and (max-width: 500px) {
  .lpg-pipette-offerte {
    align-items: flex-start;
    flex-direction: column;
  }

  .lpg-pipette-offerte__title {
    width: calc(100% - 50px);
  }

  .lpg-pipette-offerte__text {
    width: calc(100% - 50px);
  }

  .lpg-pipette-offerte__content {
    display: flex;
    flex-direction: column;
    align-items: end;
  }

  .lpg-pipette-offerte__icon {
    position: absolute;
  }

  .lpg-pipette-offerte__checkline {
    width: 100%;
    order: 10;
    margin-top: 10px;
  }

  .lpg-pipette-offerte__note {
    margin-top: 0;
  }
}