
.module_pet_tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
  position: relative;
}
.product_choice_name {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.columns{
  padding: 0 0 0;
}
.col-6.desc {
  padding-left: 50px;
  height: 100%;
}
.columns .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;  
}
.columns .column {
  flex: 1; 
  text-align: start;
  margin: 10px 0 10px 0;
  box-sizing: border-box;
}
.column.text-column-characteristics{
  text-align: start !important;
  min-width: 70%;
}
.columns .icon-column {
  max-width: 15%; 
}
.columns .text-column {
  max-width: 75%; 
}
.columns .column img {
  max-width: 100%;
  height: auto;
}
.columns .column p {
  margin-top: 0;
}

/* Responsive */

@media(min-width:768px){
    .module_pet_tracker {
          padding-left: 60px;
    }
}
@media(max-width:767px){
    .module_pet_tracker:before{
        display:none;
    }
    .module_pet_tracker_product{
          padding: 40px 20px 20px;
    }
    .product_choice_name{
      font-size:18px;
    }
    .module_pet_tracker{
      margin-bottom:30px;
    }
    .col-6.desc {
      padding-left: 20px;
    }
    .columns-topics {
      margin-left: 10px;
      margin-right: 10px:
   }
   .column.text-column-characteristics{
    min-width: 30%;
  }
  .columns .row {
    justify-content: center;
    }
} 