/** Shopify CDN: Minification failed

Line 47:9 Expected identifier but found whitespace
Line 47:10 Unexpected "1px"
Line 47:21 Unexpected "{"
Line 47:28 Expected ":"
Line 62:19 Expected identifier but found whitespace
Line 62:21 Unexpected "{"
Line 62:28 Expected ":"

**/


/* CSS from section stylesheet tags */
.pricing-module-wrapper .pricing-module-wrapper {
  text-align: center;
  margin-bottom: 20px;
}


.pricing-module-wrapper .pricing-module {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default to three columns */
  gap: 20px;
  padding: 0px 20px 20px 20px;

}

@media (max-width: 1024px) { /* Adjust for tablets */
  .pricing-module-wrapper .pricing-module {
    grid-template-columns: repeat(2, 1fr); /* Two columns for medium screens */
  }
}

@media (max-width: 768px) { /* Adjust for mobile */
  .pricing-module-wrapper .pricing-module {
    grid-template-columns: 1fr; /* One column for small screens */
    padding: 0;
  }
}

.pricing-module-wrapper .pricing-column {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
  border: 1px solid {{ block.settings.border_color }};
  position: relative;
  display: flex;
  flex-direction: column; /* Makes the internal layout vertical */
}

  .pricing-module-wrapper .pricing-column .price-header p{ font-size: 1.4rem;}

.pricing-module-wrapper .pricing-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: {{ block.settings.top_strip_color }};
}

  .pricing-module-wrapper .price-content h5{
    margin: 25px 0 0 0; 
    font-size: 1.6rem;
    font-weight: 800;
    
  }





    .pricing-module-wrapper .price-content ul{
      margin: 5px 0;
    }
  

  .pricing-module-wrapper .pricing-text{
    font-size: 1.8rem; 
    font-weight: 800;
  }

  .pricing-module-wrapper .pricing-subtext{
    font-size: 1rem;
    font-weight: 200;
    margin-top: -5px !important;
  }

  .pricing-module-wrapper .pricing-column h2,.pricing-column h2, .pricing-column p{margin: 0px;}
  .pricing-module-wrapper .pricing-column h2{ font-size: 2.5rem;}

  .pricing-module-wrapper .price-header, .price-content {

    padding: 1.6rem 2.4rem;
  }

 .pricing-module-wrapper .pricing-column .price-header h2,.pricing-column .price-header p{
    padding: 0;
  }


.pricing-module-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-module-wrapper li {
  padding: 3px 0;
  position: relative;
  font-size: 1.4rem;
}

.pricing-module-wrapper .bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  line-height: 10px;
  border-radius: 50%;
  color: white;
  text-align: center;
  margin-right: 10px;
  font-size: 14px;
}

.pricing-module-wrapper .pricing-column .button {
  display: block; /* Ensures the button is a block element */
  width: auto; /* Adjusts the width as needed */

  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
}

.pricing-module-wrapper .pricing-column .button:hover {
  opacity: 0.8;
}

 .pricing-module-wrapper .secondary-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px; /* Adjust space above the button as needed */
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em; /* Adjust font size as needed */
  transition: background-color 0.3s ease; /* Smooth background color transition */
}

.pricing-module-wrapper .secondary-button:hover {
  background-color: #555; /* Darker shade on hover, adjust as needed */
  color: #fff; /* Adjust text color on hover if needed */
}

.pricing-module-wrapper .secondary-button i {
  margin-left: 5px; /* Space between text and icon */
}

  .pricing-module-wrapper .button-container {
  display: flex;
  justify-content: center; /* Centers the button horizontally */
  margin-top: 20px; /* Adds some space above the button */
}
  @media (max-width: 980px) {
   .pricing-module-wrapper .button-container {
        display: none;
    }
}


.pricing-module-wrapper .secondary-button:hover {
  background-color: rgba(0, 0, 0, 0.4); /* Assume text color needs opacity on hover */
  /* Extra styles can be added here if needed */
}

.pricing-module-wrapper .pricing-column .button, .secondary-button {
  display: inline-block;
  width: auto;
  margin: 10px 5px; /* Adjust margins for side-by-side buttons */
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

 .pricing-module-wrapper .pricing-column .button:hover, .secondary-button:hover {
  opacity: 0.8;
}


.pricing-module-wrapper .button-container {
  display: flex; /* Enables flexbox layout */
  justify-content: space-between; /* Distributes space evenly */
  margin-top: 20px; /* Adds some space above the button container */
}

.pricing-module-wrapper .button {
  flex-grow: 1; /* Allows the button to grow and fill the space */
  text-align: center; /* Centers the text inside the button */
  padding: 10px 20px; /* Adds padding inside the button */
  border-radius: 5px; /* Rounds the corners of the button */
  text-decoration: none; /* Removes underline from links */
  margin: 0 10px; /* Adds margin between buttons */
  box-sizing: border-box; /* Includes padding and border in the element's total width and height */
}