/** Shopify CDN: Minification failed

Line 20:22 Unexpected "{"
Line 20:31 Expected ":"
Line 20:38 Unexpected "{"
Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 21:49 Expected ":"
Line 22:16 Expected identifier but found whitespace
Line 22:18 Unexpected "{"
Line 22:27 Expected ":"
... and 12 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Add your CSS styles for icon and text representation here */
.progressbar-section_{{ section.id }} {
  margin-top: {{ section.settings.margin_top }}px;
  margin-bottom: {{ section.settings.margin_bottom }}px;
}

/* Styles specific to the Dark Theme */
.progressbar-section_{{ section.id }}.theme-dark,
.progressbar-section_{{ section.id }} {
  background: #000;
  color: #fff;
}

/* Styles specific to the Light Theme */
.progressbar-section_{{ section.id }}.theme-light {
  background: #FAFAFA;
  color: #000;
}

/* Container styles */
.progressbar-section_{{ section.id }} .container {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px;
  align-items: center;
}

.section-heading {
text-transform: none !important;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
  
}
  
/* Image and content styles */
.icon-text {
margin:0 0 0 0 !important; 
  font-size: 20px
}
  
  .progressbar-section_image {
  flex: 1;
  max-width: 45%;
}

.progressbar-section_image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.progressbar-section_content {
  flex: 1;
  padding: 20px 0 20px 50px;
  max-width: 600px;
  margin: 0 auto;
}

/* Text and icon styles */
.progressbar_list {
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom:15px;
}

.progressbar_list .progressbar_list-item {
  margin: 0;
  display: flex;
  align-items: center;
}

.progressbar_list p.h4 {
  letter-spacing: normal;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 16px;
  margin-right: 10px; /* Adjust spacing between icon and text */
}

.progressbar_list li.progressbar_list-item span {
  font-size: 20px; /* Adjust the size of the icon */
}

/* Responsive styles */
@media (min-width: 769px) and (max-width: 1199px) {
  .progressbar_list .progressbar_list-item {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .progressbar-section_{{ section.id }} .container {
    flex-direction: column;
    padding: 20px;
  }
  .progressbar-section_image,
  .progressbar-section_content {
    max-width: 100%;
    padding: 0px;
    margin-left: 0;
  }

  .progressbar-section_image {
    margin-bottom: 20px;
  }
}

@media (max-width: 499px) {
  .progressbar_list .progressbar_list-item {
    font-size: 10px;
  }
}