/** Shopify CDN: Minification failed

Line 105:0 Expected "}" to go with "{"

**/
/* General Styles for the Countdown Section */
.laber_section {
  padding: 10px; /* Adjust as needed */
  display: inline-flex; /* Or remove if not necessary */
  flex-direction: column;
  align-items: center;
}
.laber_section:hover {
  opacity: 0.9 !important;
}

.heading-countdown-container {
  display: flex;
  align-items: center; /* Align items vertically */
  justify-content: center; /* Center items horizontally */
  width: 100%;
  background-image: url('{{ section.settings.background_image | img_url: '2000x' }}');
  background-size: cover; /* Ensure image covers the container */
  background-position: center top; /* Adjust positioning as needed */
  background-repeat: no-repeat;
  height: 72px; /* Set fixed height for the container */
  padding: 10px; /* Adjust as needed */
  
}

.heading {
  flex: 0 0 auto; /* Allow heading to shrink as needed */
  text-align: center; /* Center text within the heading */
  margin-right: 20px; /* Spacing between heading and countdown */
}

.countdown-wrap {
  flex: 0 0 auto; /* Allow countdown to shrink as needed */
  text-align: center; /* Center text within the countdown */
}

/* Style for the Heading and Subtitle */
.section-title, .section-subtitle {
  text-align: center; /* Center-align the text */
  color: #333; /* Default text color, adjust as needed */
  margin-bottom: 10px; /* Space between title/subtitle and countdown clock */
  margin-top: 10px; /* Space between title/subtitle and countdown clock */
}

/* Countdown Clock Styles */
.cms-countdown {
  display: flex; /* Display time components in a row */
  justify-content: center; /* Center-align the time components */
  flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

/* Individual Time Block Styling */
.cms-countdown .time {
  display: inline-flex; /* Side-by-side layout for time components */
  align-items: center; /* Vertically center content within each block */
  justify-content: center; /* Horizontally center content within each block */
  margin: 5px; /* Spacing between time blocks */
  padding: 5px 5px; /* Padding inside each block */
  background: #007bff; /* Default background color, adjust as needed */
  color: #fff; /* Default font color, adjust as needed */
  border-radius: 5px; /* Rounded corners for a softer look */
  font-weight: bold; /* Bold font for emphasis */
  font-size: 12px; /* Font size, adjust as needed */
}

/* Customizable Colors for Each Time Component */
.cms-countdown .days { background-color: #fff; color: #1A2D5F; }
.cms-countdown .hours { background-color: #fff; color: #1A2D5F; }
.cms-countdown .minutes { background-color: #fff; color: #1A2D5F; }
.cms-countdown .seconds { background-color: #fff; color: #1A2D5F; }

/* Button Styling */
.btn .buttons {
  display: inline-block;
  background-color: #007bff; /* Example: blue background */
  color: #fff; /* White text color */
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px; /* Rounded button edges */
  margin-top: 20px; /* Space above the button */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .heading-countdown-container {
    background-position: center; /* Adjust positioning for smaller screens */
    padding: 10px; /* Adjust as needed */
    background-color: #F3F5F4
  }

  .heading {
    margin-bottom: 5px; /* Add space below the heading when stacked */
    margin-right: 0; /* Reset right margin on smaller screens */
  }

  .cms-countdown .time {
    padding: 5px 5px; /* Slightly smaller padding on smaller screens */
    font-size: 12px; /* Slightly smaller font size for better fit */
  
