/* SUPPORT-3552 */

.locationBox .holder:has(:nth-child(4)) {
  grid-template-columns: repeat(2, minmax(0, 336px));
  justify-content: center;
  
    @media screen and (max-width: 768px) {
        grid-template-columns: repeat(1, minmax(0, 336px));
    }
}

.locationBox .holder:not(:has(:nth-child(4))) {
  grid-template-columns: repeat(3, 1fr);
  
  @media screen and (max-width: 768px) {
        grid-template-columns: repeat(1, minmax(0, 336px));
    }
}