.breadcrumbs {
  display: flex;
  gap: 5px;
  font-size: 14px;
  line-height: 14px;
}
.breadcrumbs .divider svg {
  height: 14px;
}
.breadcrumbs a {
  font-weight: bold;
}

.cpt_next_previous {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
}
.cpt_next_previous a {
  color: #989898;
  text-decoration: none;
  font-weight: bold;
}
.cpt_next_previous .cpt_next,
.cpt_next_previous .cpt_previous {
  background: #6fb0bf;
  border: none;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.cpt_next_previous svg {
  height: 14px;
  width: 14px;
  fill: #ffffff;
}

.cpt_next_previous .cpt_next:hover,
.cpt_next_previous .cpt_previous:hover {
  background: #004e6f;
}

.cpt_next_previous .cpt_next.disabled,
.cpt_next_previous .cpt_previous.disabled {
  cursor: default;
  background: #d3d3d3;
}

.acf-gallery-slideshow {
  width: 100%;
  max-width: 788px;
  margin: auto;
}
.main-slideshow {
  position: relative;
  overflow: hidden;
  display: flex;
  box-shadow: 4px 4px 8px 0 rgba(102, 102, 102, 0.5);
}
.main-slideshow .slide {
  width: 100%;
  transition: transform 0.5s ease-in-out;
  flex-shrink: 0;
}
.main-slideshow .slide img {
  display: block;
  width: 100%;
  height: auto;
}
.thumbnail-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.thumbnail-navigation .thumbnails-previous {
  margin-right: 15px;
  flex-shrink: 0;
}
.thumbnail-navigation .thumbnails-next {
  margin-left: 15px;
  flex-shrink: 0;
}
.thumbnail-navigation .thumbnails-previous img,
.thumbnail-navigation .thumbnails-next img {
  cursor: pointer;
  width: 14px;
}
.thumbnail-navigation .thumbs {
  display: flex;
  overflow-x: auto;
  overflow: hidden;
  padding-bottom: 5px;
  gap: 10px;
}
.thumbnail-navigation .thumbnail {
  cursor: pointer;
  flex-shrink: 0;
}
.thumbnail-navigation .thumbnail img {
  display: block;
  width: 138px;
  height: 80px;
  border: 0.5px solid #b1b1b1;
}
.thumbnail-navigation .thumbnail.active {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
