:root {
  --wowe-berlin-thumb-item-height: 150px;
  --wowe-play-btn-h-w: 65px;
}

.wowe-post-video-slider {
  overflow: hidden;
  position: relative;
  padding-bottom: var(--wowe-berlin-thumb-item-height);
}
.wowe-post-video-slider .wowe-img-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.wowe-post-video-slider .wowe-img-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.wowe-post-video-slider .wowe-img-wrap .wowe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wowe-post-video-slider .wowe-content {
  position: absolute;
}
.wowe-post-video-slider .wowe-title a,
.wowe-post-video-slider .wowe-category a {
  color: #EDF2F4;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.wowe-post-video-slider .wowe-main-slider {
  position: relative;
  height: clamp(21.875rem, 60vw, 37.5rem);
  overflow: hidden;
  margin-bottom: 10px;
}
.wowe-post-video-slider .wowe-main-slider .wowe-content {
  top: 0;
  left: 0;
  right: 0;
  padding: 0 20px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  text-align: center;
}
.wowe-post-video-slider .wowe-main-slider .wowe-img-wrap {
  overflow: hidden;
}
.wowe-post-video-slider .wowe-main-slider .wowe-img-wrap::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.57) 100%);
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-btn {
  font-size: 12px;
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-btn a {
  height: var(--wowe-play-btn-h-w);
  width: var(--wowe-play-btn-h-w);
  line-height: var(--wowe-play-btn-h-w);
  display: inline-block;
  color: #2B2D42;
  background: #EDF2F4;
  text-align: center;
  border-radius: 100%;
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper {
  --color: #1F242D;
  --color-invert: #ffffff;
  --clip-path: circle(30px at left);
  --clip-path-hover: circle(50px at left);
  --clip-path-clicked: circle(100vw at left);
  --duration: .4s;
  --timing-function: ease;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper .wowe-play-btn-video {
  height: clamp(6.875rem, 11vw, 8.438rem);
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: var(--clip-path);
  overflow: hidden;
  transition: clip-path var(--duration) var(--timing-function);
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper .wowe-play-btn-video iframe {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  background: rgb(196, 203, 222);
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper .wowe-play-btn {
  position: absolute;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: var(--opacity, 1);
  transition: opacity 0.3s var(--timing-function) 0.2s;
  z-index: 999;
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper input {
  width: var(--wowe-play-btn-h-w);
  height: var(--wowe-play-btn-h-w);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 40px;
  outline: none;
  z-index: 2;
  appearance: none;
  cursor: pointer;
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper input:focus {
  outline: 0;
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper input:hover ~ .wowe-play-btn-video {
  clip-path: var(--clip-path-hover);
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper input:hover ~ .wowe-play-btn .wowe-play-icon-wrap {
  transform: scale(0);
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper input:checked {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper input:checked ~ .wowe-play-btn-video {
  clip-path: var(--clip-path-clicked);
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper input:checked ~ .wowe-play-btn {
  --opacity: 0;
  transition: opacity 0.3s var(--timing-function);
}
.wowe-post-video-slider .wowe-main-slider .wowe-play-button-wrapper .wowe-play-icon-wrap {
  transform: scale(1);
  transition: transform 0.3s ease;
}
.wowe-post-video-slider .wowe-main-slider .wowe-category {
  margin: 0 0 clamp(1.25rem, 3vw, 1.563rem);
}
.wowe-post-video-slider .wowe-main-slider .wowe-category a {
  background: #EF233C;
  color: #EDF2F4;
  padding: 7px 12px;
  text-transform: uppercase;
  font-size: clamp(0.625rem, 2vw, 0.75rem);
  border-radius: 4px;
  line-height: 1.4;
}
.wowe-post-video-slider .wowe-main-slider .wowe-category a:hover {
  background: #D90429;
}
.wowe-post-video-slider .wowe-main-slider .wowe-category a + a {
  margin-left: 5px;
}
.wowe-post-video-slider .wowe-main-slider .wowe-title {
  font-size: clamp(1.375rem, 4vw, 2.75rem);
  margin: 0 0 clamp(0.625rem, 2vw, 1.125rem);
  font-weight: 700;
  text-transform: capitalize;
}
.wowe-post-video-slider .wowe-main-slider .wowe-title a:hover {
  color: #D90429;
}
.wowe-post-video-slider .wowe-main-slider .wowe-meta {
  display: inline-flex;
  color: #eee;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  text-transform: uppercase;
  align-items: center;
  font-weight: 500;
  flex-wrap: wrap;
}
.wowe-post-video-slider .wowe-main-slider .wowe-meta > div {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.wowe-post-video-slider .wowe-main-slider .wowe-meta > div:before {
  content: attr(data-separator);
  margin: 0 8px;
}
.wowe-post-video-slider .wowe-main-slider .wowe-meta > div:nth-child(1)::before {
  display: none;
}
.wowe-post-video-slider .wowe-main-slider .wowe-author a {
  text-decoration: none;
  color: #eee;
  padding-left: 5px;
  transition: all 0.3s ease-in-out;
}
.wowe-post-video-slider .wowe-main-slider .wowe-author a:hover {
  color: #D90429;
}
.wowe-post-video-slider .wowe-main-slider .wowe-separator {
  margin: 0 15px;
}
.wowe-post-video-slider .wowe-main-slider .wowe-date span {
  padding-left: 5px;
}
.wowe-post-video-slider .wowe-thumbs-slider {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-content {
  top: 0;
  height: 100%;
  width: 100%;
  padding: 20px;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-item {
  height: 100%;
  position: relative;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-img-wrap {
  height: var(--wowe-berlin-thumb-item-height);
  transition: all 0.3s ease-in-out;
  position: relative;
  bottom: 0;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-img-wrap .wowe-img {
  opacity: 0;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-img-wrap::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
  border-top-width: 5px;
  border-top-style: solid;
  border-top-color: #fff;
  transition: width 0.3s ease-in-out;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-img-wrap::before {
  background: #f9f9f9;
  transition: all 0.5s ease-in-out;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-play-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 20px;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-play-btn a {
  display: inline-block;
  color: #2b2d42;
  border: 1px solid #2b2d42;
  font-size: 8px;
  padding: 10px;
  text-align: center;
  border-radius: 100%;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-play-btn a i {
  display: block;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-title {
  margin: 0;
  font-size: clamp(0.75rem, 2vw, 1.063rem);
  text-transform: capitalize;
  font-weight: 700;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-title a {
  color: #2b2d42;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-title a:hover {
  color: #D90429;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-item.swiper-slide-active .wowe-img-wrap .wowe-img {
  opacity: 1;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-item.swiper-slide-active .wowe-img-wrap::before {
  background: rgba(0, 0, 0, 0.541);
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-item.swiper-slide-active .wowe-img-wrap::after {
  border-top-color: #f00;
  width: 100%;
  transition-delay: 0.6s;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-item.swiper-slide-active .wowe-play-btn a {
  color: #EDF2F4;
  border: 1px solid #EDF2F4;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-item.swiper-slide-active .wowe-title a {
  color: #EDF2F4;
}
.wowe-post-video-slider .wowe-thumbs-slider .wowe-item.swiper-slide-active .wowe-title a:hover {
  color: #D90429;
}
.wowe-post-video-slider .wowe-video-wrap .wowe-video-iframe {
  width: 100%;
  height: 100%;
  border: none !important;
}