/** Shopify CDN: Minification failed

Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 24:18 Unexpected "{"
Line 24:27 Expected ":"
Line 25:13 Expected identifier but found whitespace
Line 25:15 Unexpected "{"
Line 25:24 Expected ":"
... and 25 more hidden warnings

**/
.mku-energy-section{
  padding:80px 0;
}

#shopify-section-{{ section.id }} .mku-energy-section.bg-light{
  background: {{ section.settings.bg_light }};
}

#shopify-section-{{ section.id }} .mku-energy-section.bg-alt{
  background: {{ section.settings.bg_alt }};
}

.mku-energy-wrapper {
    max-width: 1250px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    justify-content: center;
}
.mku-energy-wrapper.reverse-layout > div:first-child{
  order:2;
}

.mku-energy-wrapper.reverse-layout > div:last-child{
  order:1;
}

/* icon */

.mku-energy-icon img{
  width:60px;
}
/* li:nth-child(3) .mku-text p strong {
color: #B8975A;
} */
/* heading */

#shopify-section-{{ section.id }} .mku-energy-title{
  font-size:40px;
  color: {{ section.settings.heading_color }};
}

#shopify-section-{{ section.id }} .mku-energy-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: {{ section.settings.text_color }};
    /* max-width: 400px; */
}

.mku-energy-highlight p {
    color: #B8975A;
    padding-bottom: 5px;
}

.mku-energy-title em {
    font-family: 'platonic, serif';
    font-style: italic;
}

/* highlight */

#shopify-section-{{ section.id }} .mku-energy-highlight{
  margin-top:30px;
  background: {{ section.settings.highlight_bg }};
  padding:14px;
  font-size:15px;
}

/* list */

.mku-energy-list{
  list-style:none;
  padding:0;
  margin:0;
}

#shopify-section-{{ section.id }} .mku-energy-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 0;
  color: {{ section.settings.list_text_color }};
}

/* diamond bullet */

#shopify-section-{{ section.id }} .mku-energy-diamond{
  width:8px;
  height:8px;
  background: {{ section.settings.dot_color }};
  transform:rotate(45deg);
  margin-top:8px;
}

@media(max-width:786px){

.mku-energy-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 15px;
}

}
