/**
 * CWP Timeline
 */
.cwp-timeline {
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 931px) {
  .cwp-timeline {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cwp-timeline__header {
  margin-bottom: 80px;
}
.cwp-timeline__title {
  font-size: 36px;
  color: #FFC627;
  font-weight: bold;
}
.cwp-timeline__item {
  width: 100%;
  max-width: 360px;
  padding-left: 20px;
  padding-right: 20px;
}
.cwp-timeline__item:last-child .event-dot:after {
  position: absolute;
  top: 69px;
  right: -16px;
  content: " ";
  border: solid rgba(255, 216, 0, 0.4);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 8px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
@media (min-width: 1200px) {
  .cwp-timeline__item .grow-container {
    transform-origin: center center;
    z-index: 1;
  }
  .cwp-timeline__item .grow-container.grow-top-left {
    transform-origin: center center;
  }
  .cwp-timeline__item .grow-container.grow-bottom-left {
    transform-origin: bottom left;
  }
  .cwp-timeline__item:hover .grow-container {
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-name: grow-card-sm;
    position: relative;
    z-index: 100;
  }
  .cwp-timeline__item:hover .grow-container.grow-md {
    animation-name: grow-card-md;
  }
}
.cwp-timeline .event-icon {
  margin-bottom: 20px;
  height: 53px;
  display: flex;
  align-items: flex-end;
}
.cwp-timeline .event-icon img {
  transition: all 0.1s ease-in-out;
  height: 30px;
  width: auto;
  display: block;
}
.cwp-timeline .event-dot {
  margin-bottom: 20px;
  height: 10px;
  width: 10px;
  background-color: #FFC627;
  border-radius: 50%;
}
.cwp-timeline .event-dot:before {
  content: " ";
  border: 1px solid rgba(255, 216, 0, 0.4);
  height: 1px;
  width: 100%;
  position: absolute;
  top: 77px;
}
.cwp-timeline .event-date {
  margin-bottom: 8px;
  color: white;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
.cwp-timeline .event-title {
  list-style: none;
  font-weight: bold;
  color: #FFC627;
  padding-left: 0;
}
.cwp-timeline .event-title li {
  margin-bottom: 8px;
}

@keyframes grow-card-sm {
  0% {
    z-index: 0;
    transform: scale(1);
  }
  99% {
    z-index: 999;
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes grow-card-md {
  0% {
    z-index: 0;
    transform: scale(1);
  }
  99% {
    z-index: 999;
  }
  100% {
    transform: scale(1.5);
  }
}
.flickity-button:hover {
  background-color: black;
}

.flickity-enabled.is-draggable .flickity-viewport {
  -webkit-mask-image: linear-gradient(to right, black 60%, rgba(0, 0, 0, 0));
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left top, left bottom;
}
@media (min-width: 930px) {
  .flickity-enabled.is-draggable .flickity-viewport {
    margin-right: 0;
    margin-left: 0;
  }
}

.flickity-button.flickity-prev-next-button.previous {
  display: none;
}
@media (min-width: 930px) {
  .flickity-button.flickity-prev-next-button.previous {
    display: block;
  }
}
.flickity-button.flickity-prev-next-button.previous[disabled] {
  display: none;
}

.flickity-prev-next-button {
  background-color: #FFC627;
  color: white;
}