.two-options td:first-child{
  position: relative;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.two-options td:first-child:before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--wpr-bg-51ea5331-ed33-4624-8d0a-0c2a2c91e1cf) no-repeat center center;;
  background-size: cover;
}
.price-item-first{
  display: block;
  padding-bottom: 4px;
  text-align: left;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.price-item-second{
  display: block;
  padding-top: 4px;
  text-align: right;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.price-item-or{
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid #E0E0E0;
  font-size: 10px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #828282;
  background: #FFF;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
.tooltip-question{
  position: absolute;
  right: 8px;
  top: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #FFF;
  background: #E0E0E0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  line-height: 20px;
  font-size: 15px;
  z-index: 2;
  cursor: pointer;
}
.tooltip-question::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%; 
    left: 50%;
    transform: translateX(-50%);    
    color: #fff;
    padding: 7px 10px;
    background: #eb7353;
    border-radius: 8px;
    font-size: 13px;
    width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    margin-bottom: 5px;
}

.tooltip-question:hover::after {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.option-title.two-options{
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
}
.option-title.two-options .price-item-first,
.option-title.two-options .price-item-second{
  text-align: center;
  padding-right: 30px;
  padding-left: 30px;
}
.option-title.two-options .tooltip-question{
  right: 0;
}
.option-title.two-options .tooltip-question::after{
  left: auto;
  right: 0;
  transform: translateX(0);
}



