/** Shopify CDN: Minification failed

Line 114:0 Comments in CSS use "/* ... */" instead of "//"
Line 174:0 Unexpected "<"

**/
.badges-list-two .badges-list-two_content {
	padding: 3rem 2rem;
	height: 100%;
	background-color: var(--item-background-color);
	color: var(--item-text-color);
	border: 1px solid var(--item-text-color);
	border-radius: var(--item-border-radius);
}

.badges-list-two.tpt-badges_hidden-border .badges-list-two_content {
	border: none;
}

.badges-list-two .badges-list-two_info {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}

.badges-list-two .badges-list-two_info > * {
	margin: 0;
	padding: 0;
}

.badges-list-two .badges-list-two_info,
.badges-list-two .badges-list-two_heading {
	margin: 0;
	padding: 0;
}

.badges-list-two .badges-list-two_link a,
.badges-list-two .badges-list-two_heading {
	color: var(--item-text-color);
}

.badges-list-two .badges-list-two_description > * {
	margin: 0 0 1rem;
}

.badges-list-two .badges-list-two_description > *:last-child {
	margin: 0;
}

.badges-list-two .badges-list-two_image.badges-image-type_default {
	margin-bottom: 1.5rem;
}

.badges-list-two .badges-list-two_image.badges-image-type_icon {
	margin-bottom: 0.5rem;
}

.badges-list-two .badges-list-two_image .badges-list-two_image-content {
	vertical-align: top;
}

.badges-list-two_content.tpt-section_align-center .badges-list-two_image.badges-image-type_default .badges-list-two_image-content {
	margin-left: auto;
	margin-right: auto;
}

.badges-list-two_image.badges-image-type_default .badges-list-two_image-content {
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	overflow: hidden;
	border-radius: 50%;
}

.badges-list-two_image.badges-image-type_default .badges-list-two_image-content img {
	width: auto;
	max-width: 100%;
	height: auto;
}

.badges-list-two .badges-list-two_link a {
	text-decoration: underline;
	text-underline-offset: 0.4rem;
}

.badges-list-two .badges-list-two_link a:hover {
	text-decoration: none;
}

@media (max-width: 768px) {
  .badges-list-two {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .badges-list-two::-webkit-scrollbar {
    display: none;
  }

  .badges-list-two .badges-list-two_content {
    min-width: 80%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}




////////////
@media (max-width: 768px) {
  .badges-list-two {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
  }

  .badges-list-two_item {
    scroll-snap-align: start;
    flex: 0 0 80%;
  }

  .carousel-controls-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .carousel-arrow {
    background: white;
    color: black;
    border: none;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
  }

  .carousel-dots {
    display: flex;
    gap: 0.5rem;
  }

  .carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.4;
  }

  .carousel-dots span.active {
    opacity: 1;
  }

  @media (min-width: 769px) {
    .carousel-controls-mobile {
      display: none;
    }
  }
}

<div class="carousel-controls-mobile">
  <button class="carousel-arrow" id="carousel-left">&#8592;</button>
  <div class="carousel-dots" id="carousel-dots"></div>
  <button class="carousel-arrow" id="carousel-right">&#8594;</button>
</div>

