/** Shopify CDN: Minification failed

Line 115:13 Expected identifier but found whitespace
Line 115:15 Unexpected "{"
Line 115:29 Expected ":"
Line 115:34 Expected ":"

**/

.custom-calendar {
  display: flex;
  flex-wrap: wrap;
}

.custom-calendar-event {
  width: 100%;
  max-width: 500px;
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.custom-calendar-event-date {
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
}

.custom-calendar-event-image {
  width: 100px;
  margin-right: 20px;
}

.custom-calendar-event-details {
  flex: 1;
}

.custom-calendar-event-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-calendar-event-description {
  margin-bottom: 10px;
}

.custom-calendar-event-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}






  .image-divider {
    position: relative;
  }

  .image-container img {
    width: 100%;
    height: auto;
  }

  .overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .overlay-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
  }

  .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  }

  .button:hover {
    background-color: #fff;
    color: #000;
  }

  @media (min-width: 768px) {
    .image-divider {
      height: {{ image_height }}px;
    }

    .image-container {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
    }

    .overlay-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 2rem;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .overlay-text {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .button {
      font-size: 1.25rem;
      padding: 1rem 2rem;
    }
  }

  @media (max-width: 767px) {
    .image-divider {
      height: auto;
    }

    .image-container {
      position: relative;
      height: 0;
      padding-bottom: calc({{ image_height }} / {{ image_width }} * 100%);
      overflow: hidden;
    }

    .image-container img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .overlay-container {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .overlay-text {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .button {
      font-size: 1rem;
      padding: 0.75rem 1.5rem;
    }
  }
