/*
* for supported in all modern browsers
* Copyright inpleworks, Co.
* https://xetemplate.com
*/
.xet-layout-popup {
  z-index: 99991;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}
.xet-layout-popup .layout-popup__container {
  overflow: hidden;
  width: 330px;
  background-color: #FFFFFF;
  box-shadow: var(--box-shadow2x);
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body {
  position: relative;
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body .popup-swiper {
  position: relative;
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body .popup-swiper .popup-swiper-pagination {
  z-index: 1;
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body .popup-swiper .popup-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--theme-color) !important;
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body .popup-swiper .popup-swiper-navigation {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 4px;
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body .popup-swiper .popup-swiper-navigation button {
  display: inline-block;
  text-align: center;
  padding: 4px;
  margin: 0;
  cursor: pointer;
  border: 0;
  outline: 0;
  background: none;
  appearance: none;
  color: #FFF;
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body .popup-swiper .popup-swiper-navigation button.js-popup-swiper-play {
  display: none;
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body .popup-swiper .popup-swiper__autoplay-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}
.xet-layout-popup .layout-popup__container .layout-popup__container__body .popup-swiper .popup-swiper__autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  stroke-width: 2px;
  stroke: var(--theme-color);
  fill: none;
  stroke-dashoffset: calc(100 * (1 - var(--progress)));
  stroke-dasharray: 100;
}
.xet-layout-popup .layout-popup__container .layout-popup__container__footer {
  display: flex;
}
.xet-layout-popup .layout-popup__container .layout-popup__container__footer > button {
  flex: 1;
  padding: 0;
  border-radius: 0;
  color: var(--text-strong-color);
}
.xet-layout-popup .layout-popup__container .layout-popup__container__footer > button + button {
  border-left: 1px solid var(--border-color);
}
.xet-layout-popup .layout-popup__container .layout-popup__container__footer > button:hover {
  color: var(--theme-color);
}