/*!*****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/announcements/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* General Wrapper */
.mobile {
  display: none;
}

.desktop {
  display: inline-block;
}

.announcements-module-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--module-background-color);
  padding: 72px 20px 72px;
  overflow: hidden;
  box-sizing: border-box;
}

.announcements-content-wrapper {
  display: flex;
  width: 100%;
  max-width: 1240px;
  transition: transform 0.5s ease;
  box-sizing: border-box;
}

/* Announcement Items */
.announcement-item {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  gap: 32px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  box-sizing: border-box;
  transform: translateX(100%);
}

.announcement-item.active {
  opacity: 1;
  transform: translateX(0);
}

.announcements-img-wrapper {
  flex: 1;
}

.announcements-copy-wrapper {
  flex: 1;
  color: var(--module-text-color);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
  flex-direction: column;
}

.announcements-eyebrow {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--module-accent-color);
}

.announcements-link {
  color: var(--module-accent-color);
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
}

/* Dots */
.announcements-dots-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}

.announcement-dot {
  width: 12px;
  height: 12px;
  background-color: #999;
  border-radius: 50%;
  cursor: pointer;
}

.announcement-dot.active {
  background-color: var(--module-text-color);
}

/* CONTROLS */
.announcements-controls-wrapper {
  max-width: 1240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 24px;
}

/* Timer Wrapper */
.announcements-timer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
}

.circular-timer {
  position: relative;
  width: 40px;
  height: 40px;
  transform-origin: center;
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-circle circle {
  fill: none;
  stroke-width: 3;
}

.progress {
  stroke: var(--module-text-color);
  stroke-dasharray: 113.1; /* Based on circle circumference */
  stroke-dashoffset: 113.1; /* Starts fully hidden */
  /* transition: stroke-dashoffset 0.3s linear; */
}

/* Pause/Play Button */
.pause-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.pause-play-button.pause::before {
  content: "❚❚";
  font-size: 16px;
  color: var(--module-text-color);
}

.pause-play-button.play::before {
  content: "▶";
  font-size: 16px;
  color: var(--module-text-color);
}

/* Arrows */
.announcements-arrows-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  width: 33.33%;
}

.announcements-arrow-svg-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.announcements-arrow-svg-wrapper:hover {
  transform: scale(1.2);
}

@media only screen and (max-width: 1080px) {
  .announcements-copy-wrapper {
    gap: 18px;
  }
  .announcements-eyebrow {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1020px) {
  .mobile {
    display: inline-block;
  }
  .desktop {
    display: none;
  }
  .announcement-item {
    flex-direction: column;
    gap: 18px;
  }
  .announcements-content-wrapper {
    width: 650px;
  }
  .announcements-dots-wrapper {
    margin-top: 4px;
  }
  .announcements-controls-wrapper {
    max-width: 650px;
    width: 80%;
    padding-top: 18px;
  }
}
@media only screen and (max-width: 687px) {
  .announcements-module-wrapper {
    padding: 42px 20px;
  }
  .announcements-content-wrapper {
    width: 90%;
    align-items: flex-start;
  }
  .announcements-controls-wrapper {
    width: 90%;
  }
}

/*# sourceMappingURL=style-index.css.map*/